Fixed the last compile-breaking mistakes.

This commit is contained in:
OBattler
2017-12-25 18:16:16 +01:00
parent cd655f1273
commit ac90896074
3 changed files with 12 additions and 2 deletions

View File

@@ -68,7 +68,9 @@ static void *ps2_nvr_init(device_t *info)
switch (romset)
{
case ROM_IBMPS2_M80: f = nvr_fopen(L"ibmps2_m80_sec.nvr", L"rb"); break;
#ifdef WALTJE
case ROM_IBMPS2_M80_486: f = nvr_fopen(L"ibmps2_m80-486_sec.nvr", L"rb"); break;
#endif
}
if (f)
{
@@ -89,7 +91,9 @@ void ps2_nvr_close(void *p)
switch (romset)
{
case ROM_IBMPS2_M80: f = nvr_fopen(L"ibmps2_m80_sec.nvr", L"wb"); break;
#ifdef WALTJE
case ROM_IBMPS2_M80_486: f = nvr_fopen(L"ibmps2_m80-486_sec.nvr", L"wb"); break;
#endif
}
if (f)
{