Codechange: [OSX] Re-arrange the OSX video driver code by combining all drawing code and moving the window/event handling to a different file.

This is just a code move/rename, not a functionality change.
This commit is contained in:
Michael Lutz
2020-12-26 16:07:47 +01:00
parent ab7da117e0
commit 9ccef816f9
9 changed files with 1478 additions and 1441 deletions

View File

@@ -1109,8 +1109,8 @@ void DetermineBasePaths(const char *exe)
_searchpaths[SP_INSTALLATION_DIR] = tmp;
#endif
#ifdef WITH_COCOA
extern void cocoaSetApplicationBundleDir();
cocoaSetApplicationBundleDir();
extern void CocoaSetApplicationBundleDir();
CocoaSetApplicationBundleDir();
#else
_searchpaths[SP_APPLICATION_BUNDLE_DIR].clear();
#endif