mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-03 13:31:18 +12:00
fix some printf format specifiers (#76)
use the definition in cinttypes for portability
This commit is contained in:
parent
5cba1a1185
commit
8459cd928c
6 changed files with 23 additions and 15 deletions
|
@ -400,7 +400,7 @@ void MemorySearcherTool::OnResultListClick(wxMouseEvent& event)
|
|||
auto currValue = m_listResults->GetItemText(selectedIndex, 1);
|
||||
|
||||
char addressString[256];
|
||||
sprintf(addressString, "0x%08x", address);
|
||||
sprintf(addressString, "0x%08lx", address);
|
||||
|
||||
// description, address, type, value, freeze
|
||||
wxVector<wxVariant> data;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue