Use static rather than extern on DSP's init flag

This commit is contained in:
Phillip Stephens 2022-04-30 01:36:02 -07:00
parent 6753bb7115
commit a48c51dedf
Signed by: Antidote
GPG Key ID: F8BEE4C83DACA60D
1 changed files with 1 additions and 1 deletions

View File

@ -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;