summaryrefslogtreecommitdiff
path: root/byte_stream.gd
diff options
context:
space:
mode:
authorDaniel Weipert <git@mail.dweipert.de>2026-06-04 10:38:38 +0200
committerDaniel Weipert <git@mail.dweipert.de>2026-06-04 10:38:38 +0200
commite403abb2a721572f53af6c0c7cdb57bc7a1acf1a (patch)
tree849c76bd0a05f04961129f68455c599697d3764b /byte_stream.gd
parentf3d360e022fce829370c7d916abe98083b14818c (diff)
next commitHEADmain
Diffstat (limited to 'byte_stream.gd')
-rw-r--r--byte_stream.gd1
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")