Explorar o código

svc: Return process title ID if queried in GetInfo()

We already have the variable itself set up to perform this task, so we
can just return its value from the currently executing process instead
of always stubbing it to zero.
Lioncash %!s(int64=8) %!d(string=hai) anos
pai
achega
e81354ae38
Modificáronse 1 ficheiros con 1 adicións e 2 borrados
  1. 1 2
      src/core/hle/kernel/svc.cpp

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

@@ -319,8 +319,7 @@ static ResultCode GetInfo(u64* result, u64 info_id, u64 handle, u64 info_sub_id)
         *result = Core::CurrentProcess()->is_virtual_address_memory_enabled;
         break;
     case GetInfoType::TitleId:
-        LOG_WARNING(Kernel_SVC, "(STUBBED) Attempted to query titleid, returned 0");
-        *result = 0;
+        *result = Core::CurrentProcess()->program_id;
         break;
     case GetInfoType::PrivilegedProcessId:
         LOG_WARNING(Kernel_SVC,