Undo that

This commit is contained in:
EmeraldLockdown 2026-03-31 21:30:22 -05:00
parent ac91a0a379
commit 0de475244d
2 changed files with 2 additions and 5 deletions

View file

@ -104,8 +104,8 @@ Color gFogColor = { 0xFF, 0xFF, 0xFF };
f32 gFogIntensity = 1;
// need inverse camera matrix to compute world space for lighting engine
Mat4 sInverseCameraMatrix;
bool sHasInverseCameraMatrix = false;
static Mat4 sInverseCameraMatrix;
static bool sHasInverseCameraMatrix = false;
// 4x4 pink-black checkerboard texture to indicate missing textures
#define MISSING_W 4

View file

@ -39,9 +39,6 @@ extern Color gVertexColor;
extern Color gFogColor;
extern f32 gFogIntensity;
extern Mat4 sInverseCameraMatrix;
extern bool sHasInverseCameraMatrix;
#ifdef __cplusplus
extern "C" {
#endif