Android: Move ImGui NewFrame/EndFrame to correct location

This commit is contained in:
Connor McLaughlin 2021-02-07 20:54:42 +10:00
parent 53fb55ff15
commit 4f75f2d266

View file

@ -472,10 +472,11 @@ void AndroidHostInterface::EmulationThreadLoop(JNIEnv* env)
// rendering // rendering
{ {
ImGui::NewFrame();
DrawImGuiWindows(); DrawImGuiWindows();
m_display->Render(); m_display->Render();
ImGui::NewFrame(); ImGui::EndFrame();
if (System::IsRunning()) if (System::IsRunning())
{ {
@ -528,7 +529,6 @@ bool AndroidHostInterface::AcquireHostDisplay()
return false; return false;
} }
ImGui::NewFrame();
return true; return true;
} }