From 47618cd4c5451245fbd92d2cb7328037129b1876 Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Wed, 7 Aug 2019 11:19:43 -0700 Subject: [PATCH] vi: add 3.0.0+ note to powerstate enum entries --- nx/include/switch/services/vi.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nx/include/switch/services/vi.h b/nx/include/switch/services/vi.h index 4ae0e13c..21722346 100644 --- a/nx/include/switch/services/vi.h +++ b/nx/include/switch/services/vi.h @@ -46,8 +46,8 @@ typedef enum { /// Used with viSetDisplayPowerState. typedef enum { ViPowerState_Off = 0, ///< Screen is off. - ViPowerState_NotScanning = 1, ///< Screen is on, but not scanning content. - ViPowerState_On = 2, ///< Screen is on. + ViPowerState_NotScanning = 1, ///< [3.0.0+] Screen is on, but not scanning content. + ViPowerState_On = 2, ///< [3.0.0+] Screen is on. ViPowerState_On_Deprecated = 1, ///< [1.0.0 - 2.3.0] Screen is on. } ViPowerState;