RARCH_LOG_BUFFER - if verbosity level is above 1, skip

This commit is contained in:
twinaphex 2019-08-20 03:54:10 +02:00
parent 9ece732348
commit 17c3635a38

View File

@ -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++)