all repos — mgba @ c7a49ce8f2a8c1a9ffc587e8f322331e4668fc21

mGBA Game Boy Advance Emulator

Qt: Set default log level to FATAL, ERROR and WARN
Jeffrey Pfau jeffrey@endrift.com
Sun, 21 Dec 2014 20:22:49 -0800
commit

c7a49ce8f2a8c1a9ffc587e8f322331e4668fc21

parent

9a0640f8346a76e9e6b68d1eaca15eb068541337

2 files changed, 2 insertions(+), 0 deletions(-)

jump to
M CHANGESCHANGES

@@ -26,6 +26,7 @@ - Qt: Disable sync to video by default

- GBA: Exit cleanly on FATAL if the port supports it - Qt: Handle a game crash without crashing - GBA Audio: Change internal audio sample buffer from 32-bit to 16-bit samples + - Qt: Set default log level to FATAL, ERROR and WARN 0.1.0: (2014-12-13) - Initial release
M src/platform/qt/ConfigController.cppsrc/platform/qt/ConfigController.cpp

@@ -87,6 +87,7 @@ m_opts.audioSync = GameController::AUDIO_SYNC;

m_opts.videoSync = GameController::VIDEO_SYNC; m_opts.fpsTarget = 60; m_opts.audioBuffers = 2048; + m_opts.logLevel = GBA_LOG_WARN | GBA_LOG_ERROR | GBA_LOG_FATAL; GBAConfigLoadDefaults(&m_config, &m_opts); GBAConfigLoad(&m_config); GBAConfigMap(&m_config, &m_opts);