You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
rename String.extension() -> String.get_extension() / String.basename() -> String.get_basename()
This commit is contained in:
@@ -1026,7 +1026,7 @@ MainLoop* test(TestType p_test) {
|
||||
} else if (p_test==TEST_BYTECODE) {
|
||||
|
||||
Vector<uint8_t> buf = GDTokenizerBuffer::parse_code_string(code);
|
||||
String dst = test.basename()+".gdc";
|
||||
String dst = test.get_basename()+".gdc";
|
||||
FileAccess *fw = FileAccess::open(dst,FileAccess::WRITE);
|
||||
fw->store_buffer(buf.ptr(),buf.size());
|
||||
memdelete(fw);
|
||||
|
||||
Reference in New Issue
Block a user