mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
newline-mode binary should also turn off decoding of newlines on read
This commit is contained in:
parent
bfe8302665
commit
d552ad28b7
@ -464,6 +464,11 @@ read_chars(char *start, size_t length) {
|
|||||||
|
|
||||||
// The file is opened in text mode. We have to decode newline
|
// The file is opened in text mode. We have to decode newline
|
||||||
// characters in the file.
|
// characters in the file.
|
||||||
|
if (_newline_mode == NM_binary) {
|
||||||
|
// Unless we're configured to always use binary mode.
|
||||||
|
return read_chars_raw(start, length);
|
||||||
|
}
|
||||||
|
|
||||||
char *buffer = (char *)alloca(length);
|
char *buffer = (char *)alloca(length);
|
||||||
|
|
||||||
size_t read_length;
|
size_t read_length;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user