Browse Source
Merge pull request #836 from FearlessTobi/port-3594
Port #3665 from Citra: "frontend: Log Citra version"
pull/15/merge
bunnei
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
0 deletions
-
src/yuzu/main.cpp
-
src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
|
|
|
@ -101,6 +101,8 @@ GMainWindow::GMainWindow() : config(new Config()), emu_thread(nullptr) { |
|
|
|
|
|
|
|
ConnectMenuEvents(); |
|
|
|
ConnectWidgetEvents(); |
|
|
|
LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", Common::g_build_name, Common::g_scm_branch, |
|
|
|
Common::g_scm_desc); |
|
|
|
|
|
|
|
setWindowTitle(QString("yuzu %1| %2-%3") |
|
|
|
.arg(Common::g_build_name, Common::g_scm_branch, Common::g_scm_desc)); |
|
|
|
|
|
|
|
@ -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(); |
|
|
|
} |
|
|
|
|