mirror of
https://github.com/momo5502/emulator.git
synced 2026-01-19 11:43:56 +00:00
Better logging
This commit is contained in:
@@ -129,7 +129,8 @@ namespace
|
||||
{
|
||||
#ifdef CONCISE_EMULATOR_OUTPUT
|
||||
static uint64_t count{0};
|
||||
if (++count > 100) return;
|
||||
++count;
|
||||
if (count > 100 && count % 10000 != 0) return;
|
||||
#endif
|
||||
|
||||
win_emu.logger.print(
|
||||
@@ -147,7 +148,8 @@ namespace
|
||||
{
|
||||
#ifdef CONCISE_EMULATOR_OUTPUT
|
||||
static uint64_t count{0};
|
||||
if (++count > 100) return;
|
||||
++count;
|
||||
if (count > 100 && count % 10000 != 0) return;
|
||||
#endif
|
||||
|
||||
win_emu.logger.print(
|
||||
|
||||
Reference in New Issue
Block a user