make module fields in draw.c static

This commit is contained in:
jacekpoz 2024-09-25 19:22:39 +02:00
parent 44fe0c5f7d
commit 8d017e2268
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -11,8 +11,8 @@
#include <stdint.h> #include <stdint.h>
bool m_framebuffer_resized = false; static bool m_framebuffer_resized = false;
uint32_t m_current_frame = 0; static uint32_t m_current_frame = 0;
void vk_framebuffer_resized(GLFWwindow *window, int width, int height) { void vk_framebuffer_resized(GLFWwindow *window, int width, int height) {
(void)window; (void)width; (void)height; (void)window; (void)width; (void)height;