mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
RARCH_LOG_BUFFER - if verbosity level is above 1, skip
This commit is contained in:
parent
9ece732348
commit
17c3635a38
@ -291,6 +291,9 @@ void RARCH_LOG_BUFFER(uint8_t *data, size_t size)
|
||||
int padding = size % 16;
|
||||
uint8_t buf[16] = {0};
|
||||
|
||||
if (verbosity_log_level > 1)
|
||||
return;
|
||||
|
||||
RARCH_LOG("== %d-byte buffer ==================\n", (int)size);
|
||||
|
||||
for (i = 0, offset = 0; i < size; i++)
|
||||
|
Loading…
x
Reference in New Issue
Block a user