From 7edb34057720808fab638643b93a7d6ff5fc33a0 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sun, 2 Dec 2012 12:44:33 -0800 Subject: [PATCH] Start the ctrl latch off all just released. --- Core/HLE/sceCtrl.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Core/HLE/sceCtrl.cpp b/Core/HLE/sceCtrl.cpp index 003408a31c..3dd877a02e 100644 --- a/Core/HLE/sceCtrl.cpp +++ b/Core/HLE/sceCtrl.cpp @@ -149,6 +149,9 @@ void sceCtrlInit() std::lock_guard guard(ctrlMutex); memset(&latch, 0, sizeof(latch)); + // Start with everything released. + latch.btnRelease = 0xffffffff; + memset(&ctrl, 0, sizeof(ctrl)); ctrl.analog[0] = 128; ctrl.analog[1] = 128;