ソースを参照

Fixes build break caused by renaming of Game::exit() to Game::end().

Kieran Cunney 13 年 前
コミット
7ca0c6e1b5
1 ファイル変更2 行追加2 行削除
  1. 2 2
      gameplay/src/PlatformQNX.cpp

+ 2 - 2
gameplay/src/PlatformQNX.cpp

@@ -962,7 +962,7 @@ int Platform::enterMessagePump()
                     _game->menu();
                     break;
                 case NAVIGATOR_EXIT:
-                    _game->exit();
+                    _game->end();
                     break;
                 }
             }
@@ -990,7 +990,7 @@ int Platform::enterMessagePump()
         rc = eglSwapBuffers(__eglDisplay, __eglSurface);
         if (rc != EGL_TRUE)
         {
-            _game->exit();
+            _game->end();
             perror("eglSwapBuffers");
             break;
         }