summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/yuzu_cmd/emu_window/emu_window_sdl2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
index e1f269d31..c87e96b2d 100644
--- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
+++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp
@@ -128,7 +128,7 @@ EmuWindow_SDL2::EmuWindow_SDL2(bool fullscreen) {
128 SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8); 128 SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8);
129 SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 0); 129 SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 0);
130 130
131 std::string window_title = fmt::format("yuzu {} | {}-{}", Common::g_build_name, 131 std::string window_title = fmt::format("yuzu {} | {}-{}", Common::g_build_fullname,
132 Common::g_scm_branch, Common::g_scm_desc); 132 Common::g_scm_branch, Common::g_scm_desc);
133 render_window = 133 render_window =
134 SDL_CreateWindow(window_title.c_str(), 134 SDL_CreateWindow(window_title.c_str(),
@@ -167,7 +167,7 @@ EmuWindow_SDL2::EmuWindow_SDL2(bool fullscreen) {
167 OnMinimalClientAreaChangeRequest(GetActiveConfig().min_client_area_size); 167 OnMinimalClientAreaChangeRequest(GetActiveConfig().min_client_area_size);
168 SDL_PumpEvents(); 168 SDL_PumpEvents();
169 SDL_GL_SetSwapInterval(false); 169 SDL_GL_SetSwapInterval(false);
170 LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", Common::g_build_name, Common::g_scm_branch, 170 LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", Common::g_build_fullname, Common::g_scm_branch,
171 Common::g_scm_desc); 171 Common::g_scm_desc);
172 172
173 DoneCurrent(); 173 DoneCurrent();