Browse Source

undo remove of statement due to compiler warning for unused variable
Instead, remove the unused variable assignment only

Pascal Deklerck 7 years ago
parent
commit
6b2a94b4f1
1 changed files with 1 additions and 2 deletions
  1. 1 2
      oxygine/src/oxygine/core/oxygine.cpp

+ 1 - 2
oxygine/src/oxygine/core/oxygine.cpp

@@ -402,8 +402,7 @@ namespace oxygine
             file::init(desc.companyName, desc.appName);
 
 #ifdef OXYGINE_SDL
- // unused variable (hotfix/compiler-warnings)
- //           int missing = initGLExtensions(SDL_GL_GetProcAddress);
+            initGLExtensions(SDL_GL_GetProcAddress);
 #endif
 
             Point size = getDisplaySize();