diff --git a/nx/include/switch/services/set.h b/nx/include/switch/services/set.h index 7fe5015d..fda2445b 100644 --- a/nx/include/switch/services/set.h +++ b/nx/include/switch/services/set.h @@ -959,7 +959,7 @@ Result setsysSetChineseTraditionalInputMethod(SetChineseTraditionalInputMethod m /** * @brief Gets the \ref SetSysHomeMenuScheme. - * @note Only available on [9.0.0+]. + * @note Only available on [8.1.1+]. * @param[out] out \ref SetSysHomeMenuScheme */ Result setsysGetHomeMenuScheme(SetSysHomeMenuScheme *out); diff --git a/nx/source/services/set.c b/nx/source/services/set.c index 3655e81f..131a5e07 100644 --- a/nx/source/services/set.c +++ b/nx/source/services/set.c @@ -727,7 +727,7 @@ Result setsysSetChineseTraditionalInputMethod(SetChineseTraditionalInputMethod m } Result setsysGetHomeMenuScheme(SetSysHomeMenuScheme *out) { - if (hosversionBefore(9,0,0)) + if (hosversionBefore(8,1,1)) return MAKERESULT(Module_Libnx, LibnxError_IncompatSysVer); return serviceDispatchOut(&g_setsysSrv, 174, *out);