Android: Move ImGui NewFrame/EndFrame to correct location

pull/1599/head
Connor McLaughlin 6 years ago
parent 53fb55ff15
commit 4f75f2d266

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

Loading…
Cancel
Save