chore: reduce debt with const values

This commit is contained in:
2025-11-10 16:29:11 +01:00
parent 1c737f4ac6
commit 5532cbf53e
20 changed files with 123 additions and 104 deletions
+3 -3
View File
@@ -7,11 +7,11 @@ void window_startup(void (*error_callback)(int, const char *));
void window_terminate();
Window *window_init(char *title, unsigned char monitor_index, bool windowed,
Window *shared_context,
Window *window_init(const char *title, unsigned char monitor_index,
bool windowed, Window *shared_context,
void (*key_callback)(Window *, int, int, int, int));
void window_update_title(Window *window, char *title);
void window_update_title(Window *window, const char *title);
double window_get_time();