From 46239e67582c67340ffb470dcb8267fe71b1820d Mon Sep 17 00:00:00 2001
From: Connor McLaughlin <stenzek@gmail.com>
Date: Sun, 29 Mar 2020 01:12:54 +1000
Subject: [PATCH] GPU: Fix GP0(1Fh) locking up emulator

---
 src/core/gpu_commands.cpp | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/core/gpu_commands.cpp b/src/core/gpu_commands.cpp
index 5a00bb288..8006f9c39 100644
--- a/src/core/gpu_commands.cpp
+++ b/src/core/gpu_commands.cpp
@@ -118,7 +118,8 @@ bool GPU::HandleInterruptRequestCommand(const u32*& command_ptr, u32 command_siz
     m_GPUSTAT.interrupt_request = true;
     m_interrupt_controller->InterruptRequest(InterruptController::IRQ::GPU);
   }
-
+  
+  command_ptr++;
   EndCommand();
   return true;
 }