From 5d5d13c9d66cbc35dbe7dac51a6873c36f2c8520 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 9 Oct 2024 11:38:32 -0700 Subject: [PATCH] svc: WaitIfEqual64 is value 3 --- nx/include/switch/kernel/svc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/include/switch/kernel/svc.h b/nx/include/switch/kernel/svc.h index ddc44fd6..67a993ab 100644 --- a/nx/include/switch/kernel/svc.h +++ b/nx/include/switch/kernel/svc.h @@ -267,7 +267,7 @@ typedef enum { ArbitrationType_WaitIfLessThan = 0, ///< Wait if the 32-bit value is less than argument. ArbitrationType_DecrementAndWaitIfLessThan = 1, ///< Decrement the 32-bit value and wait if it is less than argument. ArbitrationType_WaitIfEqual = 2, ///< Wait if the 32-bit value is equal to argument. - ArbitrationType_WaitIfEqual64 = 2, ///< [19.0.0+] Wait if the 64-bit value is equal to argument. + ArbitrationType_WaitIfEqual64 = 3, ///< [19.0.0+] Wait if the 64-bit value is equal to argument. } ArbitrationType; /// Context of a scheduled thread.