From a4ca331de9678e5b25872a4e2c5cd90e2bc4052f Mon Sep 17 00:00:00 2001 From: Joshua Scoggins Date: Mon, 18 Apr 2016 00:13:30 -0700 Subject: [PATCH] Added some more todos --- Sources/Engine/Engine.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sources/Engine/Engine.cpp b/Sources/Engine/Engine.cpp index 5c179a4..15021ca 100644 --- a/Sources/Engine/Engine.cpp +++ b/Sources/Engine/Engine.cpp @@ -323,6 +323,7 @@ static void SanityCheckTypes(void) // don't want to export this function static void PlatformIdentification(void) { +// !!! FIXME: Abstract this somehow. #if (defined PLATFORM_WIN32) OSVERSIONINFO osv; memset(&osv, 0, sizeof(osv)); @@ -372,6 +373,7 @@ static void PlatformIdentification(void) (int)sys_iOSMajor, (int)sys_iOSMinor, (int)sys_iOSBuild); #elif (defined PLATFORM_UNIX) // !!! FIXME: rcg10082001 what to do with this? + // FIXME: probably want to use uname function on Linux but it isn't totally applicable...hmm... sys_iOSMajor = 1; sys_iOSMinor = 0; sys_iOSBuild = 0; @@ -584,7 +586,6 @@ ENGINE_API void SE_InitEngine(const char *argv0, CTString strGameID) CPrintF(TRANSV("Examining underlying OS...\n")); PlatformIdentification(); -// !!! FIXME: Abstract this somehow. CPrintF("\n");