From 1c7db4f8d88f7125d77de6c2cbda232dcb31c3e1 Mon Sep 17 00:00:00 2001 From: ndeadly <24677491+ndeadly@users.noreply.github.com> Date: Mon, 19 Apr 2021 21:42:14 +0200 Subject: [PATCH] btdrv: use correct u8 type for inquiry status on 12.0.0 --- nx/include/switch/services/btdrv.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nx/include/switch/services/btdrv.h b/nx/include/switch/services/btdrv.h index a952c748..7499695d 100644 --- a/nx/include/switch/services/btdrv.h +++ b/nx/include/switch/services/btdrv.h @@ -52,7 +52,7 @@ typedef struct { } v1; ///< [1.0.0-11.0.1] struct { - BtdrvInquiryStatus status; ///< \ref BtdrvInquiryStatus + u8 status; ///< Status: 0 = stopped, 1 = started. u8 pad[3]; ///< Padding u32 service_mask; ///< Services value from \ref btdrvStartInquiry when starting, otherwise this is value 0 } v12; ///< [12.0.0+]