mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-24 20:35:01 +00:00
Fix fmt error (#1150)
This commit is contained in:
parent
80bf46da4c
commit
d9f287eaa2
1 changed files with 2 additions and 2 deletions
|
@ -1057,7 +1057,7 @@ static bool TryExecuteIllegalInstruction(void* ctx, void* code_address) {
|
||||||
// Undefined behavior if length + index is bigger than 64 according to the spec,
|
// Undefined behavior if length + index is bigger than 64 according to the spec,
|
||||||
// we'll warn and continue execution.
|
// we'll warn and continue execution.
|
||||||
LOG_WARNING(Core,
|
LOG_WARNING(Core,
|
||||||
"extrq at {:x} with length {} and index {} is bigger than 64, "
|
"extrq at {} with length {} and index {} is bigger than 64, "
|
||||||
"undefined behavior",
|
"undefined behavior",
|
||||||
fmt::ptr(code_address), length, index);
|
fmt::ptr(code_address), length, index);
|
||||||
}
|
}
|
||||||
|
@ -1117,7 +1117,7 @@ static bool TryExecuteIllegalInstruction(void* ctx, void* code_address) {
|
||||||
// Undefined behavior if length + index is bigger than 64 according to the spec,
|
// Undefined behavior if length + index is bigger than 64 according to the spec,
|
||||||
// we'll warn and continue execution.
|
// we'll warn and continue execution.
|
||||||
LOG_WARNING(Core,
|
LOG_WARNING(Core,
|
||||||
"insertq at {:x} with length {} and index {} is bigger than 64, "
|
"insertq at {} with length {} and index {} is bigger than 64, "
|
||||||
"undefined behavior",
|
"undefined behavior",
|
||||||
fmt::ptr(code_address), length, index);
|
fmt::ptr(code_address), length, index);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue