diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-26 12:04:30 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-26 12:04:30 -0700 |
commit | ec2b7cdb1d6cb9f42969b86e826fb1f85d43ce28 (patch) | |
tree | 79d7910e4a60d7efe9665583db1ce574c694857a /src/yuzu_cmd | |
parent | f1fbb476df13af4623d5865c1ef57f51e68c3712 (diff) | |
parent | 6f05a577125878b35482d9c12f2dda5a731cace1 (diff) |
Merge pull request #836 from FearlessTobi/port-3594
Port #3665 from Citra: "frontend: Log Citra version"
Diffstat (limited to 'src/yuzu_cmd')
-rw-r--r-- | src/yuzu_cmd/emu_window/emu_window_sdl2.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp index 72ba7d49c..e2945b6cf 100644 --- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp +++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp @@ -164,6 +164,8 @@ EmuWindow_SDL2::EmuWindow_SDL2(bool fullscreen) { OnResize(); OnMinimalClientAreaChangeRequest(GetActiveConfig().min_client_area_size); SDL_PumpEvents(); + LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", Common::g_build_name, Common::g_scm_branch, + Common::g_scm_desc); DoneCurrent(); } |