summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm.cpp
diff options
context:
space:
mode:
authorLectem <lectem@gmail.com>2016-12-30 15:54:40 +0100
committerLectem <lectem@gmail.com>2017-03-18 10:44:01 +0100
commitfb70c9683c088233810abe298d587eaf671f6041 (patch)
tree1d2720d2d362d7c6b5381c83f4f8df0aabee1bc7 /src/core/hle/service/ptm/ptm.cpp
parentrefactor APT service to use the new IPC helpers (diff)
downloadyuzu-fb70c9683c088233810abe298d587eaf671f6041.tar
yuzu-fb70c9683c088233810abe298d587eaf671f6041.tar.gz
yuzu-fb70c9683c088233810abe298d587eaf671f6041.tar.bz2
yuzu-fb70c9683c088233810abe298d587eaf671f6041.tar.lz
yuzu-fb70c9683c088233810abe298d587eaf671f6041.tar.xz
yuzu-fb70c9683c088233810abe298d587eaf671f6041.tar.zst
yuzu-fb70c9683c088233810abe298d587eaf671f6041.zip
Diffstat (limited to 'src/core/hle/service/ptm/ptm.cpp')
-rw-r--r--src/core/hle/service/ptm/ptm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/ptm/ptm.cpp b/src/core/hle/service/ptm/ptm.cpp
index 016ac8d4f..bdfa7391a 100644
--- a/src/core/hle/service/ptm/ptm.cpp
+++ b/src/core/hle/service/ptm/ptm.cpp
@@ -101,7 +101,7 @@ void CheckNew3DS(IPC::RequestBuilder& rb) {
}
rb.Push(RESULT_SUCCESS);
- rb.Push(u32(is_new_3ds ? 1 : 0));
+ rb.Push(is_new_3ds);
LOG_WARNING(Service_PTM, "(STUBBED) called isNew3DS = 0x%08x", static_cast<u32>(is_new_3ds));
}