From 2d4e75369af8d65e800ee5e20fb2f7f5ca265c51 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Fri, 5 Aug 2016 11:34:22 -0700 Subject: [PATCH] Oops, fix typo. Pointed out by Florin9doi - wasn't currently causing problems because the value 1 isn't yet being used. --- Core/HLE/HLE.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/HLE/HLE.h b/Core/HLE/HLE.h index 7b85ac2871..516e409d0c 100644 --- a/Core/HLE/HLE.h +++ b/Core/HLE/HLE.h @@ -38,7 +38,7 @@ enum { // Indicates the call should write zeros to the stack (stackBytesToClear in the table.) HLE_CLEAR_STACK_BYTES = 1 << 10, // Indicates that this call operates in kernel mode. - HLE_KERNEL_SYSCALL = 1 < 11, + HLE_KERNEL_SYSCALL = 1 << 11, }; struct HLEFunction