diff options
Diffstat (limited to 'src/os')
-rw-r--r-- | src/os/os2/os2.cpp | 2 | ||||
-rw-r--r-- | src/os/unix/unix.cpp | 2 | ||||
-rw-r--r-- | src/os/windows/win32.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/os/os2/os2.cpp b/src/os/os2/os2.cpp index 21fd0c78b..82ba19924 100644 --- a/src/os/os2/os2.cpp +++ b/src/os/os2/os2.cpp @@ -172,7 +172,7 @@ int CDECL main(int argc, char *argv[]) { SetRandomSeed(time(NULL)); - return ttd_main(argc, argv); + return openttd_main(argc, argv); } bool GetClipboardContents(char *buffer, size_t buff_len) diff --git a/src/os/unix/unix.cpp b/src/os/unix/unix.cpp index 7cd9709f8..09bf6c6e7 100644 --- a/src/os/unix/unix.cpp +++ b/src/os/unix/unix.cpp @@ -272,7 +272,7 @@ int CDECL main(int argc, char *argv[]) signal(SIGPIPE, SIG_IGN); - ret = ttd_main(argc, argv); + ret = openttd_main(argc, argv); #ifdef WITH_COCOA cocoaReleaseAutoreleasePool(); diff --git a/src/os/windows/win32.cpp b/src/os/windows/win32.cpp index 3bb22288f..30c259a64 100644 --- a/src/os/windows/win32.cpp +++ b/src/os/windows/win32.cpp @@ -462,7 +462,7 @@ int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLi argc = ParseCommandLine(cmdline, argv, lengthof(argv)); - ttd_main(argc, argv); + openttd_main(argc, argv); return 0; } |