summaryrefslogtreecommitdiffstats
path: root/src/core/hle
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-30 19:57:08 +0100
committerbunnei <bunneidev@gmail.com>2015-01-30 19:57:08 +0100
commitc8c3a94b208dd000561eb77d6ab0e585f236a73d (patch)
tree4d1a5ccf5afa0f2e1430fd0eb701fb06187bb733 /src/core/hle
parentMerge pull request #503 from yuriks/kernel-lifetime4 (diff)
parentloader: Add missing printf argument (diff)
downloadyuzu-c8c3a94b208dd000561eb77d6ab0e585f236a73d.tar
yuzu-c8c3a94b208dd000561eb77d6ab0e585f236a73d.tar.gz
yuzu-c8c3a94b208dd000561eb77d6ab0e585f236a73d.tar.bz2
yuzu-c8c3a94b208dd000561eb77d6ab0e585f236a73d.tar.lz
yuzu-c8c3a94b208dd000561eb77d6ab0e585f236a73d.tar.xz
yuzu-c8c3a94b208dd000561eb77d6ab0e585f236a73d.tar.zst
yuzu-c8c3a94b208dd000561eb77d6ab0e585f236a73d.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/apt_u.cpp4
-rw-r--r--src/core/hle/service/fs/archive.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/apt_u.cpp b/src/core/hle/service/apt_u.cpp
index 629b670ed..4c3f621d0 100644
--- a/src/core/hle/service/apt_u.cpp
+++ b/src/core/hle/service/apt_u.cpp
@@ -373,7 +373,7 @@ void SetAppCpuTimeLimit(Service::Interface* self) {
u32 percent = cmd_buff[2];
if (value != 1) {
- LOG_ERROR(Service_APT, "This value must be one!", value);
+ LOG_ERROR(Service_APT, "This value should be one, but is actually %u!", value);
}
cmd_buff[1] = RESULT_SUCCESS.raw; // No error
@@ -395,7 +395,7 @@ void GetAppCpuTimeLimit(Service::Interface* self) {
u32 value = cmd_buff[1];
if (value != 1) {
- LOG_ERROR(Service_APT, "This value must be one!", value);
+ LOG_ERROR(Service_APT, "This value should be one, but is actually %u!", value);
}
// TODO(purpasmart96): This is incorrect, I'm pretty sure the percentage should
diff --git a/src/core/hle/service/fs/archive.cpp b/src/core/hle/service/fs/archive.cpp
index 6682f6590..43eef034e 100644
--- a/src/core/hle/service/fs/archive.cpp
+++ b/src/core/hle/service/fs/archive.cpp
@@ -89,7 +89,7 @@ public:
class File : public Kernel::Session {
public:
File(std::unique_ptr<FileSys::FileBackend>&& backend, const FileSys::Path& path)
- : path(path), backend(std::move(backend)), priority(0) {
+ : path(path), priority(0), backend(std::move(backend)) {
}
std::string GetName() const override { return "Path: " + path.DebugStr(); }