mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-26 18:00:41 +00:00
Fix debug counter, not supported in wsprintfW.
This commit is contained in:
parent
2ce6f7121b
commit
0e7aa6fc6d
@ -866,7 +866,7 @@ void CDisasm::UpdateDialog(bool _bComplete)
|
||||
rl->redraw();
|
||||
// Update Debug Counter
|
||||
wchar_t tempTicks[24];
|
||||
wsprintf(tempTicks, L"%lld", CoreTiming::GetTicks()-lastTicks);
|
||||
_snwprintf(tempTicks, 24, L"%lld", CoreTiming::GetTicks()-lastTicks);
|
||||
SetDlgItemText(m_hDlg, IDC_DEBUG_COUNT, tempTicks);
|
||||
|
||||
// Update Register Dialog
|
||||
|
Loading…
Reference in New Issue
Block a user