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
commit a8a2769bb6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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");