diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2023-03-16 10:44:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-16 10:44:56 -0700 |
commit | 6970257cffc6790f4d7e847e87e5cab9e252874e (patch) | |
tree | 670c3d175851bf4d151a41d37121d834db3a7bf9 /platform/macos/godot_main_macos.mm | |
parent | d23922ffebe48f29126c003411495737d07e5a9f (diff) | |
parent | c0e5879b41f99d690287bc4c696a8a217084e6ed (diff) |
Merge pull request #74987 from YuriSizov/4.0-cherrypicks
Cherry-picks for the 4.0 branch (future 4.0.1) - 4th batch
Diffstat (limited to 'platform/macos/godot_main_macos.mm')
-rw-r--r-- | platform/macos/godot_main_macos.mm | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/platform/macos/godot_main_macos.mm b/platform/macos/godot_main_macos.mm index 29125c29a9..e98ab08127 100644 --- a/platform/macos/godot_main_macos.mm +++ b/platform/macos/godot_main_macos.mm @@ -53,21 +53,12 @@ int main(int argc, char **argv) { int first_arg = 1; const char *dbg_arg = "-NSDocumentRevisionsDebugMode"; - printf("arguments\n"); for (int i = 0; i < argc; i++) { if (strcmp(dbg_arg, argv[i]) == 0) { first_arg = i + 2; } - printf("%i: %s\n", i, argv[i]); } -#ifdef DEBUG_ENABLED - // Lets report the path we made current after all that. - char cwd[4096]; - getcwd(cwd, 4096); - printf("Current path: %s\n", cwd); -#endif - OS_MacOS os; Error err; |