mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-09 08:21:18 +12:00
Fix some compiler warnings (#416)
This commit is contained in:
parent
3869b47c35
commit
9ebbfb3ae2
6 changed files with 9 additions and 9 deletions
|
@ -509,7 +509,7 @@ void CemuUpdateWindow::WorkerThread()
|
|||
forceLog_printf("applying update error: %s", sys.what());
|
||||
}
|
||||
|
||||
if ((counter++ / 10) * 10 == counter)
|
||||
if ((counter++ % 10) == 0)
|
||||
{
|
||||
auto* event = new wxCommandEvent(wxEVT_PROGRESS);
|
||||
event->SetInt(counter);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue