aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-02-29 16:04:38 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-02-29 16:04:38 -0500
commit0a0766a186db892f7a8f28f0130a043fd9b9dff9 (patch)
tree4959e3da621b3f92cf4336eefe61a0df53dcb493 /main.cpp
parent8a2517c3068bb8fc7b22a01a2f75ab5537342063 (diff)
Stuff
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 0adb0d5..f0b49ad 100644
--- a/main.cpp
+++ b/main.cpp
@@ -321,6 +321,7 @@ int main(/*int argc, char *argv[]*/){
*/
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1);
+ SDL_GL_SetSwapInterval(0);
glViewport(0, 0, SCREEN_WIDTH, SCREEN_HEIGHT);
@@ -407,6 +408,7 @@ int main(/*int argc, char *argv[]*/){
**** GAMELOOP ****
**************************/
+ std::cout << "Num threads: " << std::thread::hardware_concurrency() << std::endl;
gameRunning = true;
while(gameRunning){
mainLoop();
@@ -462,6 +464,7 @@ void mainLoop(void){
currentTime = millis();
deltaTime = currentTime - prevTime;
+
if(currentMenu)goto MENU;
/*
@@ -475,7 +478,6 @@ void mainLoop(void){
currentWorld->bgmPlay(prev);
ui::dialogBoxExists = false;
}
-
if(prevPrevTime + MSEC_PER_TICK <= currentTime){
logic();
prevPrevTime = currentTime;