From d9f0415074671fdc5bb114bb94ccd7b071d4f306 Mon Sep 17 00:00:00 2001 From: Gary Talent Date: Wed, 3 Aug 2022 00:38:54 -0500 Subject: [PATCH] [nostalgia/core/gba] Make GBA CBB data static --- src/nostalgia/core/gba/gfx.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nostalgia/core/gba/gfx.cpp b/src/nostalgia/core/gba/gfx.cpp index 2561e5a2..d050db48 100644 --- a/src/nostalgia/core/gba/gfx.cpp +++ b/src/nostalgia/core/gba/gfx.cpp @@ -17,7 +17,7 @@ namespace nostalgia::core { -ox::Array g_cbbData; +static ox::Array g_cbbData; constexpr auto GbaTileColumns = 32; constexpr auto GbaTileRows = 32;