Add a missing `break;`

Whoops. Now I wonder why the compile didn't fail for me locally, even
though I *should* have -Werror=implicit-fallthrough enabled...
This commit is contained in:
Misa 2022-04-25 01:21:43 -07:00
parent 98cb415675
commit 8bece4f6aa
1 changed files with 1 additions and 0 deletions

View File

@ -1509,6 +1509,7 @@ void Graphics::processfade(void)
{
fademode = FADE_NONE;
}
break;
case FADE_NONE:
case FADE_FULLY_BLACK:
break;