summaryrefslogtreecommitdiff
path: root/src/d/actor/d_a_ghostship.cpp
diff options
context:
space:
mode:
authorJcw87 <Jcw87@users.noreply.github.com>2023-12-19 02:53:41 -0800
committerJcw87 <Jcw87@users.noreply.github.com>2023-12-19 03:22:42 -0800
commit985f1df0b7746b6ebc159d07fc7581bd3ead1b20 (patch)
tree4f9ec424f7cae1b079419227c149c1e7943db945 /src/d/actor/d_a_ghostship.cpp
parentfa59660bf249e00a75dd5afe37b2f05ef4484128 (diff)
dummy data should be static
Diffstat (limited to 'src/d/actor/d_a_ghostship.cpp')
-rw-r--r--src/d/actor/d_a_ghostship.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/actor/d_a_ghostship.cpp b/src/d/actor/d_a_ghostship.cpp
index 1e5bab71..876e4911 100644
--- a/src/d/actor/d_a_ghostship.cpp
+++ b/src/d/actor/d_a_ghostship.cpp
@@ -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];
}