mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
UI: Typo fix.
This commit is contained in:
parent
190f363be1
commit
ac78b908d3
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue