diff options
author | James Rowe <jroweboy@gmail.com> | 2017-01-15 19:43:22 +0100 |
---|---|---|
committer | James Rowe <jroweboy@gmail.com> | 2017-02-23 08:42:55 +0100 |
commit | b090422991a6a4d29401aca91829e271bf9519b8 (patch) | |
tree | ef312c8ce6f266aa7af43253b5ae1f3440f2de16 /src/citra | |
parent | Merge pull request #2579 from wwylele/no-clang-format-check (diff) | |
download | yuzu-b090422991a6a4d29401aca91829e271bf9519b8.tar yuzu-b090422991a6a4d29401aca91829e271bf9519b8.tar.gz yuzu-b090422991a6a4d29401aca91829e271bf9519b8.tar.bz2 yuzu-b090422991a6a4d29401aca91829e271bf9519b8.tar.lz yuzu-b090422991a6a4d29401aca91829e271bf9519b8.tar.xz yuzu-b090422991a6a4d29401aca91829e271bf9519b8.tar.zst yuzu-b090422991a6a4d29401aca91829e271bf9519b8.zip |
Diffstat (limited to 'src/citra')
-rw-r--r-- | src/citra/emu_window/emu_window_sdl2.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/citra/emu_window/emu_window_sdl2.cpp b/src/citra/emu_window/emu_window_sdl2.cpp index 81a3abe3f..00d00905a 100644 --- a/src/citra/emu_window/emu_window_sdl2.cpp +++ b/src/citra/emu_window/emu_window_sdl2.cpp @@ -79,8 +79,8 @@ EmuWindow_SDL2::EmuWindow_SDL2() { SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 0); - std::string window_title = - Common::StringFromFormat("Citra | %s-%s", Common::g_scm_branch, Common::g_scm_desc); + std::string window_title = Common::StringFromFormat("Citra %s| %s-%s ", Common::g_build_name, + Common::g_scm_branch, Common::g_scm_desc); render_window = SDL_CreateWindow( window_title.c_str(), SDL_WINDOWPOS_UNDEFINED, // x position |