diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main.cpp b/src/main.cpp index 2dc5112..ef2a7bc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -13,10 +13,10 @@ SDL_Surface *renderSurface = NULL; SDL_GLContext mainGLContext = NULL; bool gameRunning = true; -static unsigned int tickCount = 0, - prevTime = 0, - currentTime = 0, - deltaTime = 0; +unsigned int tickCount = 0, + prevTime = 0, + currentTime = 0, + deltaTime = 0; World *currentWorld=NULL; Player *player; |