Skip to content

Commit

Permalink
AppVeyor git branch in title fix #2
Browse files Browse the repository at this point in the history
  • Loading branch information
hcorion authored and Nekotekina committed Sep 27, 2017
1 parent 2b1c757 commit d36de7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rpcs3/rpcs3qt/gs_frame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ gs_frame::gs_frame(const QString& title, int w, int h, QIcon appIcon, bool disab
version = version.substr(0 , version.find_last_of("-"));

//Add branch to version on frame , unless it's master.
if (rpcs3::get_branch() != "master")
if (rpcs3::get_branch() != "master" || rpcs3::get_branch() != "HEAD")
{
version = version + "-" + rpcs3::get_branch();
}
Expand Down Expand Up @@ -133,7 +133,7 @@ void gs_frame::show()
{
Emu.CallAfter([=]()
{
QWindow::show();
QWindow::show();
if (g_cfg.misc.start_fullscreen)
{
setVisibility(FullScreen);
Expand Down

0 comments on commit d36de7d

Please sign in to comment.