GBA: Remove GBA_LOG_INFO from default log levels

This commit is contained in:
Jeffrey Pfau 2015-07-08 20:43:26 -07:00
parent 9911484aee
commit f6581773d8
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ static void GBAInit(struct ARMCore* cpu, struct ARMComponent* component) {
gba->biosVf = 0;
gba->logHandler = 0;
gba->logLevel = GBA_LOG_INFO | GBA_LOG_WARN | GBA_LOG_ERROR | GBA_LOG_FATAL;
gba->logLevel = GBA_LOG_WARN | GBA_LOG_ERROR | GBA_LOG_FATAL;
gba->stream = 0;
gba->biosChecksum = GBAChecksum(gba->memory.bios, SIZE_BIOS);