You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-05 17:15:09 +00:00
Merge pull request #38713 from aaronfranke/string-64bit
Make all String integer conversion methods be 64-bit
This commit is contained in:
@@ -856,7 +856,7 @@ Error Main::setup(const char *execpath, int argc, char *argv[], bool p_second_ph
|
||||
}
|
||||
} else if (I->get() == "--allow_focus_steal_pid") { // not exposed to user
|
||||
if (I->next()) {
|
||||
allow_focus_steal_pid = I->next()->get().to_int64();
|
||||
allow_focus_steal_pid = I->next()->get().to_int();
|
||||
N = I->next()->next();
|
||||
} else {
|
||||
OS::get_singleton()->print("Missing editor PID argument, aborting.\n");
|
||||
|
||||
Reference in New Issue
Block a user