소스 검색

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