Implicit switch fallthrough refactor

This commit is contained in:
Jack Andersen
2019-02-17 19:45:24 -10:00
parent 54ef2dd73b
commit 9f2bb1b371
5 changed files with 10 additions and 0 deletions

View File

@@ -398,6 +398,7 @@ struct AppCallback : boo::IApplicationCallback {
#endif
}
m_updateDisp = true;
break;
default:
break;
}
@@ -870,6 +871,7 @@ void EventCallback::specialKeyDown(boo::ESpecialKey key, boo::EModifierKey mods,
break;
case boo::ESpecialKey::Esc:
m_app.m_breakout = true;
break;
default:
break;
}