diff options
author | Lioncash <mathew1800@gmail.com> | 2018-09-29 23:58:26 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-09-30 08:29:57 +0200 |
commit | 16145e2f21d7f7208c95d164a0fe2b1a5d8c20d6 (patch) | |
tree | c22765539200de9bbc95a3a60f4b3b158311c96e /src/core/gdbstub | |
parent | Merge pull request #1414 from lioncash/ref (diff) | |
download | yuzu-16145e2f21d7f7208c95d164a0fe2b1a5d8c20d6.tar yuzu-16145e2f21d7f7208c95d164a0fe2b1a5d8c20d6.tar.gz yuzu-16145e2f21d7f7208c95d164a0fe2b1a5d8c20d6.tar.bz2 yuzu-16145e2f21d7f7208c95d164a0fe2b1a5d8c20d6.tar.lz yuzu-16145e2f21d7f7208c95d164a0fe2b1a5d8c20d6.tar.xz yuzu-16145e2f21d7f7208c95d164a0fe2b1a5d8c20d6.tar.zst yuzu-16145e2f21d7f7208c95d164a0fe2b1a5d8c20d6.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/gdbstub/gdbstub.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp index d8c7b3492..ae88440c2 100644 --- a/src/core/gdbstub/gdbstub.cpp +++ b/src/core/gdbstub/gdbstub.cpp @@ -250,7 +250,7 @@ static void RegWrite(std::size_t id, u64 val, Kernel::Thread* thread = nullptr) } else if (id == PC_REGISTER) { thread->context.pc = val; } else if (id == PSTATE_REGISTER) { - thread->context.pstate = val; + thread->context.pstate = static_cast<u32>(val); } else if (id > PSTATE_REGISTER && id < FPCR_REGISTER) { thread->context.vector_registers[id - (PSTATE_REGISTER + 1)][0] = val; } |