From 8492e9ab261a614acf2507fe48f56a93a326b233 Mon Sep 17 00:00:00 2001 From: Phillip Stephens Date: Sat, 30 Apr 2022 01:36:02 -0700 Subject: [PATCH] Use static rather than extern on DSP's init flag Former-commit-id: a48c51dedf203bbcf2bb09c77929535323144a5a --- src/Dolphin/dsp/dsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Dolphin/dsp/dsp.c b/src/Dolphin/dsp/dsp.c index 8ae29f86..a7030103 100644 --- a/src/Dolphin/dsp/dsp.c +++ b/src/Dolphin/dsp/dsp.c @@ -8,7 +8,7 @@ extern "C" { #endif static const char* __DSPVersion = "<< Dolphin SDK - DSP\trelease build: Sep 5 2002 05:35:13 (0x2301) >>"; -extern s32 __DSP_init_flag = 0; +static s32 __DSP_init_flag = 0; extern DSPTaskInfo* __DSP_tmp_task; extern DSPTaskInfo* __DSP_last_task; extern DSPTaskInfo* __DSP_first_task;