1
0
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:
Rémi Verschelde
2020-07-01 16:01:05 +02:00
committed by GitHub
14 changed files with 40 additions and 109 deletions

View File

@@ -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");