aboutsummaryrefslogtreecommitdiff
path: root/app/demo/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'app/demo/main.c')
-rw-r--r--app/demo/main.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/app/demo/main.c b/app/demo/main.c
index 0aa4e34..2efca7c 100644
--- a/app/demo/main.c
+++ b/app/demo/main.c
@@ -2,10 +2,11 @@
2 2
3#include <assert.h> 3#include <assert.h>
4 4
5const int WIDTH = 960; 5const int WIDTH = 960;
6const int HEIGHT = 600; 6const int HEIGHT = 600;
7const int MAX_FPS = 60; 7const int UPDATE_FPS = 60;
8const char* TITLE = "iso3d"; 8const int MAX_FPS = 60;
9const char* TITLE = "iso3d";
9 10
10typedef struct GfxAppState { 11typedef struct GfxAppState {
11 int unused; 12 int unused;
@@ -47,4 +48,4 @@ void Resize(GfxApp* app, GfxAppState* state, int width, int height) {
47 (void)height; 48 (void)height;
48} 49}
49 50
50GFX_APP_MAIN(WIDTH, HEIGHT, MAX_FPS, TITLE) 51GFX_APP_MAIN(WIDTH, HEIGHT, UPDATE_FPS, MAX_FPS, TITLE)