diff options
| author | 2018-04-26 14:46:54 -0400 | |
|---|---|---|
| committer | 2018-04-26 15:37:16 -0400 | |
| commit | c33755e2b993c30b68920a578af9c9d0f5fbdc2f (patch) | |
| tree | ff0d274c8b1305610162f691f9d32088045b8f58 /src/core/arm | |
| parent | Merge pull request #401 from lioncash/gdbstub (diff) | |
| download | yuzu-c33755e2b993c30b68920a578af9c9d0f5fbdc2f.tar.gz yuzu-c33755e2b993c30b68920a578af9c9d0f5fbdc2f.tar.xz yuzu-c33755e2b993c30b68920a578af9c9d0f5fbdc2f.zip | |
core: Replace remaining old non-generic logger usages with fmt-capable equivalents
LOG_GENERIC usages will be amended in a follow-up to keep API changes separate from
interface changes, as it will require removing a parameter from the relevant function
in the VMManager class.
Diffstat (limited to 'src/core/arm')
| -rw-r--r-- | src/core/arm/dynarmic/arm_dynarmic.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/arm/dynarmic/arm_dynarmic.cpp b/src/core/arm/dynarmic/arm_dynarmic.cpp index 6afad0e0c..3078b64ef 100644 --- a/src/core/arm/dynarmic/arm_dynarmic.cpp +++ b/src/core/arm/dynarmic/arm_dynarmic.cpp | |||
| @@ -55,8 +55,8 @@ public: | |||
| 55 | } | 55 | } |
| 56 | 56 | ||
| 57 | void InterpreterFallback(u64 pc, size_t num_instructions) override { | 57 | void InterpreterFallback(u64 pc, size_t num_instructions) override { |
| 58 | LOG_INFO(Core_ARM, "Unicorn fallback @ 0x%" PRIx64 " for %zu instructions (instr = %08x)", | 58 | NGLOG_INFO(Core_ARM, "Unicorn fallback @ {:#X} for {} instructions (instr = {:08X})", pc, |
| 59 | pc, num_instructions, MemoryReadCode(pc)); | 59 | num_instructions, MemoryReadCode(pc)); |
| 60 | 60 | ||
| 61 | ARM_Interface::ThreadContext ctx; | 61 | ARM_Interface::ThreadContext ctx; |
| 62 | parent.SaveContext(ctx); | 62 | parent.SaveContext(ctx); |