From 5805b859f5b350b37f37e0d3c37ea1a09e0c5a38 Mon Sep 17 00:00:00 2001 From: Riley Testut Date: Fri, 12 Aug 2022 19:38:28 -0500 Subject: [PATCH] [iPad] Dismisses keyboard controller when pausing --- Delta/Emulation/GameViewController.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Delta/Emulation/GameViewController.swift b/Delta/Emulation/GameViewController.swift index 1e8d474..41d165c 100644 --- a/Delta/Emulation/GameViewController.swift +++ b/Delta/Emulation/GameViewController.swift @@ -1084,6 +1084,8 @@ extension GameViewController: GameViewControllerDelegate else if self.presentedViewController == nil { self.pauseEmulation() + self.controllerView.resignFirstResponder() + self.performSegue(withIdentifier: "pause", sender: gameController) } }