summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2020-04-28 17:25:34 +0200
committerGitHub <noreply@github.com>2020-04-28 17:25:34 +0200
commit961427037c47b5a2aa2141a5804eba9114d7cd73 (patch)
treef52b618f1d731e31e8abc3687019bdb3c0616516 /src
parentMerge pull request #3813 from ogniK5377/err-hex-2-dec (diff)
parentkernel: Bad GetInfo ids should not be marked as stubs (diff)
downloadyuzu-961427037c47b5a2aa2141a5804eba9114d7cd73.tar
yuzu-961427037c47b5a2aa2141a5804eba9114d7cd73.tar.gz
yuzu-961427037c47b5a2aa2141a5804eba9114d7cd73.tar.bz2
yuzu-961427037c47b5a2aa2141a5804eba9114d7cd73.tar.lz
yuzu-961427037c47b5a2aa2141a5804eba9114d7cd73.tar.xz
yuzu-961427037c47b5a2aa2141a5804eba9114d7cd73.tar.zst
yuzu-961427037c47b5a2aa2141a5804eba9114d7cd73.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/svc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 25b4a23b4..41ef2caf6 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -773,7 +773,7 @@ static ResultCode GetInfo(Core::System& system, u64* result, u64 info_id, u64 ha
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;
}
@@ -866,7 +866,7 @@ static ResultCode GetInfo(Core::System& system, u64* result, u64 info_id, u64 ha
}
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;
}
}