style: identifiers separation

This commit is contained in:
2025-11-23 13:06:40 +01:00
parent 6b4630f255
commit 2f83bbb21e
4 changed files with 14 additions and 5 deletions
+2 -1
View File
@@ -121,7 +121,8 @@ void window_events() { glfwPollEvents(); }
double window_get_time() { return glfwGetTime(); }
void window_use(Window *window, SharedContext *context) {
int width, height;
int width;
int height;
glfwMakeContextCurrent(window);
glfwGetFramebufferSize(window, &width, &height);