Quellcode durchsuchen

APT: Fix typo in setting return code for NotifyToWait

bunnei vor 11 Jahren
Ursprung
Commit
2572a62480
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1 1
      src/core/hle/service/apt_u.cpp

+ 1 - 1
src/core/hle/service/apt_u.cpp

@@ -65,7 +65,7 @@ void NotifyToWait(Service::Interface* self) {
     // TODO(Subv): Verify this, it seems to get SWKBD and Home Menu further.
     Kernel::SignalEvent(pause_event_handle);
     LOG_WARNING(Service_APT, "(STUBBED) app_id=%u", app_id);
-    cmd_buff[0] = 0;
+    cmd_buff[1] = 0;
 }
 
 void GetLockHandle(Service::Interface* self) {