summaryrefslogtreecommitdiffstats
path: root/src/core/gdbstub/gdbstub.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-11-27 01:58:20 +0100
committerLioncash <mathew1800@gmail.com>2018-11-27 01:58:23 +0100
commit474c7455026e048e9957edb974d45a986e3e534f (patch)
treec64130bbb1f4058f356d79c76634c51a9fe39d2d /src/core/gdbstub/gdbstub.cpp
parentMerge pull request #1763 from ReinUsesLisp/bfi (diff)
downloadyuzu-474c7455026e048e9957edb974d45a986e3e534f.tar
yuzu-474c7455026e048e9957edb974d45a986e3e534f.tar.gz
yuzu-474c7455026e048e9957edb974d45a986e3e534f.tar.bz2
yuzu-474c7455026e048e9957edb974d45a986e3e534f.tar.lz
yuzu-474c7455026e048e9957edb974d45a986e3e534f.tar.xz
yuzu-474c7455026e048e9957edb974d45a986e3e534f.tar.zst
yuzu-474c7455026e048e9957edb974d45a986e3e534f.zip
Diffstat (limited to '')
-rw-r--r--src/core/gdbstub/gdbstub.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp
index 687dea409..e6b5171ee 100644
--- a/src/core/gdbstub/gdbstub.cpp
+++ b/src/core/gdbstub/gdbstub.cpp
@@ -282,7 +282,7 @@ static void FpuWrite(std::size_t id, u128 val, Kernel::Thread* thread = nullptr)
if (id >= UC_ARM64_REG_Q0 && id < FPCR_REGISTER) {
thread_context.vector_registers[id - UC_ARM64_REG_Q0] = val;
} else if (id == FPCR_REGISTER) {
- thread_context.fpcr = val[0];
+ thread_context.fpcr = static_cast<u32>(val[0]);
}
}