diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-07-01 16:01:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-01 16:01:05 +0200 |
commit | a8a2769bb6f7bc5231c06776300cbae7a9b2a4d6 (patch) | |
tree | b5f366b586d412004ab9ce28a1c5f71695a95873 /main/main.cpp | |
parent | 2abe858e1ccd202b7aee543f9846c1ccf7e51e2c (diff) | |
parent | 25c978730bd6d09091ae0f148766f6833e6e1400 (diff) |
Merge pull request #38713 from aaronfranke/string-64bit
Make all String integer conversion methods be 64-bit
Diffstat (limited to 'main/main.cpp')
-rw-r--r-- | main/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/main.cpp b/main/main.cpp index 79c8fe532d..76175780a3 100644 --- a/main/main.cpp +++ b/main/main.cpp @@ -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"); |