UI: Typo fix.

This commit is contained in:
Unknown W. Brackets 2017-11-12 09:34:22 -08:00
parent 190f363be1
commit ac78b908d3

View file

@ -1048,9 +1048,9 @@ void EmuScreen::render() {
if (invalid_)
return;
const bool hasVisibileUI = !osm.IsEmpty() || saveStatePreview_->GetVisibility() != UI::V_GONE || g_Config.bShowTouchControls;
const bool hasVisibleUI = !osm.IsEmpty() || saveStatePreview_->GetVisibility() != UI::V_GONE || g_Config.bShowTouchControls;
const bool showDebugUI = g_Config.bShowDebugStats || g_Config.bShowDeveloperMenu || g_Config.bShowAudioDebug || g_Config.bShowFrameProfiler;
if (hasVisibileUI || showDebugUI || g_Config.iShowFPSCounter != 0) {
if (hasVisibleUI || showDebugUI || g_Config.iShowFPSCounter != 0) {
// This sets up some important states but not the viewport.
screenManager()->getUIContext()->Begin();