store bytes at global data seg (#5708)

This commit is contained in:
Green3492
2026-03-31 23:45:54 +09:00
committed by GitHub
parent a6dc9f9e92
commit 78797757f0

View File

@ -108,7 +108,7 @@ int main(void)
decalMaterial.maps[MATERIAL_MAP_DIFFUSE].color = RAYWHITE; decalMaterial.maps[MATERIAL_MAP_DIFFUSE].color = RAYWHITE;
bool showModel = true; bool showModel = true;
Model decalModels[MAX_DECALS] = { 0 }; static Model decalModels[MAX_DECALS] = { 0 };
int decalCount = 0; int decalCount = 0;
SetTargetFPS(60); // Set our game to run at 60 frames-per-second SetTargetFPS(60); // Set our game to run at 60 frames-per-second