From 78797757f04f6b76f7a340ecbbd75cfa63ab5762 Mon Sep 17 00:00:00 2001 From: Green3492 <57958064+r3g492@users.noreply.github.com> Date: Tue, 31 Mar 2026 23:45:54 +0900 Subject: [PATCH] store bytes at global data seg (#5708) --- examples/models/models_decals.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/models/models_decals.c b/examples/models/models_decals.c index 6e80283f2..2956d3c7a 100644 --- a/examples/models/models_decals.c +++ b/examples/models/models_decals.c @@ -108,7 +108,7 @@ int main(void) decalMaterial.maps[MATERIAL_MAP_DIFFUSE].color = RAYWHITE; bool showModel = true; - Model decalModels[MAX_DECALS] = { 0 }; + static Model decalModels[MAX_DECALS] = { 0 }; int decalCount = 0; SetTargetFPS(60); // Set our game to run at 60 frames-per-second