Merge pull request #38713 from aaronfranke/string-64bit
Make all String integer conversion methods be 64-bit
This commit is contained in:
commit
a8a2769bb6
14 changed files with 40 additions and 109 deletions
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue