aboutsummaryrefslogtreecommitdiff
path: root/headers
diff options
context:
space:
mode:
Diffstat (limited to 'headers')
-rw-r--r--headers/TZR.h1
-rw-r--r--headers/TZR_globals.h1
-rw-r--r--headers/TZR_types.h1
3 files changed, 2 insertions, 1 deletions
diff --git a/headers/TZR.h b/headers/TZR.h
index 1af2f40..06e3714 100644
--- a/headers/TZR.h
+++ b/headers/TZR.h
@@ -15,6 +15,7 @@
.height=224, \
.target_fps=60, \
.pixel_perfect=true, \
+ .show_cursor=false, \
.title="TZR", \
._=0, __VA_ARGS__ })
diff --git a/headers/TZR_globals.h b/headers/TZR_globals.h
index 548110b..a6eaac7 100644
--- a/headers/TZR_globals.h
+++ b/headers/TZR_globals.h
@@ -17,7 +17,6 @@ extern unsigned long ___tzr_min_dt;
extern int ___tzr_should_quit;
extern int ___tzr_mouse_x;
extern int ___tzr_mouse_y;
-extern const char *___tzr_command[___TZR_RES_COUNT];
extern TZR_KeyState ___tzr_keystates[SDL_NUM_SCANCODES];
extern TZR_KeyState ___tzr_mousestates[256];
extern float ___tzr_scale;
diff --git a/headers/TZR_types.h b/headers/TZR_types.h
index 2377614..32f734a 100644
--- a/headers/TZR_types.h
+++ b/headers/TZR_types.h
@@ -41,6 +41,7 @@ struct TZR_Config {
int height;
int target_fps;
bool pixel_perfect;
+ bool show_cursor;
const char *title;
};