diff options
| author | Max Roncace <me@caseif.net> | 2026-01-06 07:45:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-06 04:45:15 -0800 |
| commit | fd863582d657bb2c70f7ac73d5f534c6b0be7aa6 (patch) | |
| tree | adf9a30b0fe674c718918ee058154ecdbe84e133 /src/f_pc/f_pc_base.cpp | |
| parent | 3679e7abab82df6447f7b55aa472b5b9c8062fb0 (diff) | |
f_pc mostly linked for Wii/Shield (#3015)
Diffstat (limited to 'src/f_pc/f_pc_base.cpp')
| -rw-r--r-- | src/f_pc/f_pc_base.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/f_pc/f_pc_base.cpp b/src/f_pc/f_pc_base.cpp index d59864a4ea..36af52f905 100644 --- a/src/f_pc/f_pc_base.cpp +++ b/src/f_pc/f_pc_base.cpp @@ -95,8 +95,8 @@ int fpcBs_Delete(base_process_class* i_proc) { JSUList<Z2SoundObjBase>* allList = Z2GetAudioMgr()->getAllList(); for (JSUListIterator<Z2SoundObjBase> it(allList->getFirst()); it != allList->getEnd(); it++) { - static JSULink<Z2SoundObjBase>* DUMMY_FILL_IT = NULL; - static Z2SoundObjBase* DUMMY_FILL_P = NULL; + static JSULink<Z2SoundObjBase>* DUMMY_FILL_IT = (JSULink<Z2SoundObjBase>*)0xdddddddd; + static Z2SoundObjBase* DUMMY_FILL_P = (Z2SoundObjBase*)0xdddddddd; if (it == DUMMY_FILL_IT || it.getObject() == DUMMY_FILL_P) { const char* stageName = dStage_getName2(profname, 0); if (stageName == NULL) { @@ -154,7 +154,7 @@ int fpcBs_SubCreate(base_process_class* i_proc) { i_proc->state.create_phase = cPhs_NEXT_e; return cPhs_NEXT_e; case cPhs_INIT_e: -case cPhs_LOADING_e: + case cPhs_LOADING_e: i_proc->state.init_state = 1; i_proc->state.create_phase = cPhs_INIT_e; return cPhs_INIT_e; |
