summaryrefslogtreecommitdiffstats
path: root/src/yuzu_cmd
diff options
context:
space:
mode:
authorCaptV0rt3x <c.vamsi.krishna.96@gmail.com>2018-08-29 14:01:32 +0200
committerCaptV0rt3x <c.vamsi.krishna.96@gmail.com>2018-09-07 08:27:05 +0200
commit9382414b2036751f98d8e65a25f00517d9f46436 (patch)
treebad988c1423f1d92ffb907d98bd8d5666e93dbc9 /src/yuzu_cmd
parentBetter Title Bar Display (diff)
downloadyuzu-9382414b2036751f98d8e65a25f00517d9f46436.tar
yuzu-9382414b2036751f98d8e65a25f00517d9f46436.tar.gz
yuzu-9382414b2036751f98d8e65a25f00517d9f46436.tar.bz2
yuzu-9382414b2036751f98d8e65a25f00517d9f46436.tar.lz
yuzu-9382414b2036751f98d8e65a25f00517d9f46436.tar.xz
yuzu-9382414b2036751f98d8e65a25f00517d9f46436.tar.zst
yuzu-9382414b2036751f98d8e65a25f00517d9f46436.zip
Diffstat (limited to 'src/yuzu_cmd')
-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) {
SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 0);
- std::string window_title = fmt::format("yuzu {} | {}-{}", Common::g_build_name,
+ std::string window_title = fmt::format("yuzu {} | {}-{}", Common::g_build_fullname,
Common::g_scm_branch, Common::g_scm_desc);
render_window =
SDL_CreateWindow(window_title.c_str(),
@@ -167,7 +167,7 @@ EmuWindow_SDL2::EmuWindow_SDL2(bool fullscreen) {
OnMinimalClientAreaChangeRequest(GetActiveConfig().min_client_area_size);
SDL_PumpEvents();
SDL_GL_SetSwapInterval(false);
- LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", Common::g_build_name, Common::g_scm_branch,
+ LOG_INFO(Frontend, "yuzu Version: {} | {}-{}", Common::g_build_fullname, Common::g_scm_branch,
Common::g_scm_desc);
DoneCurrent();