diff options
Diffstat (limited to 'byte_stream.gd')
| -rw-r--r-- | byte_stream.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/byte_stream.gd b/byte_stream.gd index 5477422..526bf12 100644 --- a/byte_stream.gd +++ b/byte_stream.gd @@ -102,6 +102,7 @@ func get_string_from_ascii(length: int) -> String: return get_buffer(length).bytes.get_string_from_ascii() func get_string_from_ro(length: int) -> String: + return get_string_from_ascii(length) var buffer := get_buffer(length).bytes Engine.print_error_messages = false var string := buffer.get_string_from_multibyte_char("EUC-KR") |
