| 656 | } |
| 657 | |
| 658 | void UpdateOperationMode() { |
| 659 | // Thank you so much libnx for not exposing the actual call to get the mode via IPC :P |
| 660 | // We're qlaunch, not using appletMainLoop, thus we have to take care of this manually... |
| 661 | u8 raw_mode = 0; |
| 662 | UL_RC_ASSERT(serviceDispatchOut(appletGetServiceSession_CommonStateGetter(), 5, raw_mode)); |
| 663 | g_OperationMode = static_cast<AppletOperationMode>(raw_mode); |
| 664 | } |
| 665 | |
| 666 | void HandleAppletMessage() { |
| 667 | u32 finished_verify_count = 0; |
no outgoing calls
no test coverage detected