summaryrefslogtreecommitdiffhomepage
path: root/include/rodeo/window.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/rodeo/window.h')
-rw-r--r--include/rodeo/window.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/rodeo/window.h b/include/rodeo/window.h
index 5674174..2dcfab2 100644
--- a/include/rodeo/window.h
+++ b/include/rodeo/window.h
@@ -22,10 +22,10 @@ void
rodeo_window_deinit(void);
uint32_t
-rodeo_window_screen_width_get(void);
+rodeo_window_width_get(void);
uint32_t
-rodeo_window_screen_height_get(void);
+rodeo_window_height_get(void);
bool
rodeo_window_shouldQuit(void);
@@ -35,14 +35,14 @@ rodeo_window_quit(void);
#define \
mrodeo_window_do( \
- screen_height, \
screen_width, \
+ screen_height, \
title \
) \
mrodeo_defer_do( \
rodeo_window_init( \
- screen_height, \
screen_width, \
+ screen_height, \
title \
), \
rodeo_window_deinit() \