Fix the version number in window title
This commit is contained in:
parent
22a41d1094
commit
109a37fdf4
2 changed files with 2 additions and 2 deletions
|
@ -1029,7 +1029,7 @@ void graphics_init()
|
|||
console_mode = false;
|
||||
|
||||
window::notify_screen_update();
|
||||
std::string windowname = "lsnes-" + lsnes_version + "[" + bsnes_core_version + "]";
|
||||
std::string windowname = "lsnes rr" + lsnes_version + "[" + bsnes_core_version + "]";
|
||||
SDL_WM_SetCaption(windowname.c_str(), "lsnes");
|
||||
|
||||
init_joysticks();
|
||||
|
|
|
@ -1481,7 +1481,7 @@ void boot_emulator(loaded_rom& rom, moviefile& movie)
|
|||
wx_status_window* status = new wx_status_window();
|
||||
window2 = status;
|
||||
status->Show();
|
||||
std::string windowname = "lsnes-" + lsnes_version + "[" + bsnes_core_version + "]";
|
||||
std::string windowname = "lsnes rr" + lsnes_version + "[" + bsnes_core_version + "]";
|
||||
main_window = new emulator_main_window(windowname);
|
||||
struct emulator_boot_state s;
|
||||
s.rom = &rom;
|
||||
|
|
Loading…
Add table
Reference in a new issue