chore(console): declare statics as static

This commit is contained in:
fallenoak 2025-11-04 15:45:46 -06:00
parent e8d94cbea3
commit 8ff5e548ed
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -7,14 +7,14 @@
#include <cstring> #include <cstring>
static CGxDevice* s_device; static CGxDevice* s_device;
CVar* s_cvGxMaximize; static CVar* s_cvGxMaximize;
CVar* s_cvGxResolution; static CVar* s_cvGxResolution;
CVar* s_cvGxWidescreen; static CVar* s_cvGxWidescreen;
CVar* s_cvGxWindow; static CVar* s_cvGxWindow;
DefaultSettings s_defaults; static DefaultSettings s_defaults;
bool s_hwDetect; static bool s_hwDetect;
bool s_hwChanged; static bool s_hwChanged;
CGxFormat s_requestedFormat; static CGxFormat s_requestedFormat;
bool CVGxMaximizeCallback(CVar*, const char*, const char*, void*) { bool CVGxMaximizeCallback(CVar*, const char*, const char*, void*) {
// TODO // TODO