GTK+: Don't append "- Snes9x" to game name.

This commit is contained in:
Brandon Wright 2018-11-05 18:17:48 -06:00
parent 6591ee92a2
commit 5e2049ac55
1 changed files with 1 additions and 1 deletions

View File

@ -1407,7 +1407,7 @@ Snes9xWindow::update_statusbar ()
S9xBasenameNoExt (Memory.ROMFilename));
}
snprintf (title_string, 1024, "%s - Snes9x", S9xBasenameNoExt (Memory.ROMFilename));
snprintf (title_string, 1024, "%s", S9xBasenameNoExt (Memory.ROMFilename));
}
gtk_window_set_title (GTK_WINDOW (window), title_string);