GUI: Fix -Wimplicit-fallthrough warning with GCC on OSX

This commit is contained in:
Donovan Watteau 2023-04-11 11:06:17 +02:00
parent 39ed170ad2
commit b9e7168d01

View File

@ -424,7 +424,10 @@ bool EditableWidget::handleKeyDown(Common::KeyState state) {
}
clearSelection();
break;
} else {
defaultKeyDownHandler(state, dirty, forcecaret, handled);
}
break;
#endif
default: