Skip to content

Commit 506cdff

Browse files
committed
Made pause key unpause as well
1 parent f04e32c commit 506cdff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/gui.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -980,7 +980,7 @@ void PCSX::GUI::startFrame() {
980980
} else {
981981
g_emulator->m_debug->stepIn();
982982
}
983-
} else if (ImGui::IsKeyPressed(ImGuiKey_F5)) {
983+
} else if (ImGui::IsKeyPressed(ImGuiKey_Pause) || ImGui::IsKeyPressed(ImGuiKey_F5)) {
984984
g_system->resume();
985985
}
986986
} else {

0 commit comments

Comments
 (0)