dummy data should be static

This commit is contained in:
Jcw87
2023-12-19 02:53:41 -08:00
parent fa59660bf2
commit 985f1df0b7
9 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -169,7 +169,7 @@ void daGhostship_c::modeProcCall() {
}
// probably unused/debug colors or something
const u32 dummy[] = {
static const u32 dummy[] = {
0x0000FF80,
0xFF000080,
0xFF000080,
@@ -179,7 +179,7 @@ const u32 dummy[] = {
0x0000FF80,
0x0000FF80,
};
u32 dummyFunc() {
static u32 dummyFunc() {
return dummy[0];
}