Clean code for MVP Release

This commit is contained in:
PedroEdiaz
2024-10-22 19:54:55 -06:00
parent 7787daa2da
commit 6727c5fa9a
6 changed files with 106 additions and 100 deletions

View File

@@ -13,7 +13,7 @@ window_t init_window(unsigned int w, unsigned int h, const char * name);
/*
Limitamos los FPS, contando el tiempo en el que
se ejecuta el main loop, y esperando el tiempo restante
para lograr los fps deciados.
para lograr los fps deseados.
*/
static
@@ -37,6 +37,7 @@ void __limit_fps_window(int max_fps)
current_time = glfwGetTime();
}
previous_time = current_time;
}