GLK: FROTZ: Fix Missing Default Switch Case

This is flagged by GCC if -Wswitch-default is enabled.
This commit is contained in:
D G Turner 2019-12-19 11:05:20 +00:00
parent d00ee14158
commit e7bbc33797

View File

@ -644,6 +644,8 @@ void Processor::z_sound_effect() {
case EFFECT_FINISH_WITH:
os_finish_with_sample (number);
break;
default:
break;
}
_soundLocked = false;