mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
General: Toss out PRI macro usage
Now that VS supports more printf specifiers, these aren't necessary
This commit is contained in:
@ -96,7 +96,7 @@ void RegisterV(const void* base_address, u32 code_size,
|
||||
if (s_perf_map_file.IsOpen())
|
||||
{
|
||||
std::string entry = StringFromFormat(
|
||||
"%" PRIx64 " %x %s\n",
|
||||
"%llx %x %s\n",
|
||||
(u64)base_address, code_size, symbol_name.data());
|
||||
s_perf_map_file.WriteBytes(entry.data(), entry.size());
|
||||
}
|
||||
|
Reference in New Issue
Block a user