From 61a3d26624e6bf026818c50a51a5ca9d5630f2e1 Mon Sep 17 00:00:00 2001 From: LiquidFenrir Date: Tue, 23 Jul 2019 09:31:56 +0200 Subject: [PATCH] make bitmask values use BIT macro --- libctru/include/3ds/services/ac.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libctru/include/3ds/services/ac.h b/libctru/include/3ds/services/ac.h index d0ad9f9..bc1ad79 100644 --- a/libctru/include/3ds/services/ac.h +++ b/libctru/include/3ds/services/ac.h @@ -112,7 +112,7 @@ Result ACU_SetNetworkArea(acuConfig* config, u8 area); /** * @brief Sets the slot to use when connecting. * @param config Pointer to an acuConfig struct used with ACU_CreateDefaultConfig previously. - * @param type Allowed slots flag. 1 for slot 1, 2 for slot 2, 4 for slot 3. + * @param type Allowed slots flag. BIT(0) for slot 1, BIT(1) for slot 2, BIT(2) for slot 3. */ Result ACU_SetAllowApType(acuConfig* config, u8 type);