mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
set: Fixed the required sysver for setsysGetHomeMenuScheme.
This commit is contained in:
parent
b83ddf8157
commit
6c706d910f
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user