mirror of
https://github.com/Atmosphere-NX/Atmosphere-libs.git
synced 2025-06-29 14:32:58 +02:00
hid: fix sm usage
This commit is contained in:
parent
834549081a
commit
17960517ba
@ -40,14 +40,12 @@ namespace ams::hid {
|
|||||||
|
|
||||||
/* Helper. */
|
/* Helper. */
|
||||||
void InitializeHid() {
|
void InitializeHid() {
|
||||||
R_ABORT_UNLESS(smInitialize());
|
sm::DoWithSession([&]() {
|
||||||
ON_SCOPE_EXIT { smExit(); };
|
|
||||||
{
|
|
||||||
R_ABORT_UNLESS(hidInitialize());
|
R_ABORT_UNLESS(hidInitialize());
|
||||||
hidInitializeNpad();
|
hidInitializeNpad();
|
||||||
R_ABORT_UNLESS(hidSetSupportedNpadIdType(NpadIdTypes, NumNpadIdTypes));
|
R_ABORT_UNLESS(hidSetSupportedNpadIdType(NpadIdTypes, NumNpadIdTypes));
|
||||||
R_ABORT_UNLESS(hidSetSupportedNpadStyleSet(HidNpadStyleSet_NpadStandard | HidNpadStyleTag_NpadSystemExt));
|
R_ABORT_UNLESS(hidSetSupportedNpadStyleSet(HidNpadStyleSet_NpadStandard | HidNpadStyleTag_NpadSystemExt));
|
||||||
}
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
Result EnsureHidInitialized() {
|
Result EnsureHidInitialized() {
|
||||||
|
Loading…
Reference in New Issue
Block a user