make module fields in draw.c static
This commit is contained in:
parent
44fe0c5f7d
commit
8d017e2268
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue