Skip to content

Commit b423f9c

Browse files
authored
Merge pull request #1859 from mziab/pause-toggle
Make pause key unpause as well
2 parents af5fde9 + 506cdff commit b423f9c

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)