1. fixed title of fr2; 2. Fixed access violation after getting:

Proposed video mode not supported on device \\.\DISPLAY1
Unable to initialize Direct3D.
Fatal error: Unable to complete window creation
This commit is contained in:
Robbbert 2016-05-21 13:27:54 +10:00
parent 2d6c0e4002
commit 293caed9cb
2 changed files with 9 additions and 5 deletions

View File

@ -8813,7 +8813,7 @@ GAME( 1994, fightfeva, fightfev, neobase, neogeo, neogeo_state, neogeo, R
GAME( 1994, pspikes2, neogeo, neobase, neogeo, neogeo_state, neogeo, ROT0, "Video System Co.", "Power Spikes II (NGM-068)", MACHINE_SUPPORTS_SAVE )
GAME( 1994, sonicwi2, neogeo, neobase, neogeo, neogeo_state, neogeo, ROT0, "Video System Co.", "Aero Fighters 2 / Sonic Wings 2", MACHINE_SUPPORTS_SAVE )
GAME( 1995, sonicwi3, neogeo, neobase, neogeo, neogeo_state, neogeo, ROT0, "Video System Co.", "Aero Fighters 3 / Sonic Wings 3", MACHINE_SUPPORTS_SAVE )
GAME( 1995, fr2, neogeo, neobase, neogeo, neogeo_state, neogeo, ROT0, "Video System Co.", "Idol Mahjong Final Romance 2", MACHINE_SUPPORTS_SAVE )
GAME( 1995, fr2, neogeo, neobase, neogeo, neogeo_state, neogeo, ROT0, "Video System Co.", "Idol Mahjong Final Romance 2 (Neo-Geo)", MACHINE_SUPPORTS_SAVE )
GAME( 1997, popbounc, neogeo, popbounc, neogeo, neogeo_state, neogeo, ROT0, "Video System Co.", "Pop 'n Bounce / Gapporin", MACHINE_SUPPORTS_SAVE )
/* Visco */

View File

@ -713,10 +713,14 @@ void osd_common_t::window_exit()
void osd_common_t::input_exit()
{
m_keyboard_input->exit();
m_mouse_input->exit();
m_lightgun_input->exit();
m_joystick_input->exit();
if (m_keyboard_input)
m_keyboard_input->exit();
if (m_mouse_input)
m_mouse_input->exit();
if (m_lightgun_input)
m_lightgun_input->exit();
if (m_joystick_input)
m_joystick_input->exit();
}
void osd_common_t::osd_exit()