Sfoglia il codice sorgente

Merge pull request #3814 from ogniK5377/getinfo-err

kernel: Bad GetInfo ids should not be marked as stubs
Mat M 6 anni fa
parent
commit
961427037c
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      src/core/hle/kernel/svc.cpp

+ 2 - 2
src/core/hle/kernel/svc.cpp

@@ -773,7 +773,7 @@ static ResultCode GetInfo(Core::System& system, u64* result, u64 info_id, u64 ha
             break;
             break;
         }
         }
 
 
-        LOG_WARNING(Kernel_SVC, "(STUBBED) Unimplemented svcGetInfo id=0x{:016X}", info_id);
+        LOG_ERROR(Kernel_SVC, "Unimplemented svcGetInfo id=0x{:016X}", info_id);
         return ERR_INVALID_ENUM_VALUE;
         return ERR_INVALID_ENUM_VALUE;
     }
     }
 
 
@@ -866,7 +866,7 @@ static ResultCode GetInfo(Core::System& system, u64* result, u64 info_id, u64 ha
     }
     }
 
 
     default:
     default:
-        LOG_WARNING(Kernel_SVC, "(STUBBED) Unimplemented svcGetInfo id=0x{:016X}", info_id);
+        LOG_ERROR(Kernel_SVC, "Unimplemented svcGetInfo id=0x{:016X}", info_id);
         return ERR_INVALID_ENUM_VALUE;
         return ERR_INVALID_ENUM_VALUE;
     }
     }
 }
 }