REP instructions now correctly issue a Debug exception after every iteration, fixes NT 3.x on 386 CPU's;

Fixed a string bug in the Settings dialog (Joysticks combo box).
This commit is contained in:
OBattler
2017-07-24 15:21:17 +02:00
parent ff23ccb2a2
commit 36fcf10388
4 changed files with 41 additions and 2 deletions

View File

@@ -726,6 +726,7 @@ BEGIN
IDS_2072 "Removable devices"
IDS_2073 "Unable to create bitmap file: %s"
IDS_2074 "Use CTRL+ALT+PAGE DOWN to return to windowed mode"
IDS_2075 "CD-ROM images (*.ISO;*.CUE)\0*.ISO;*.CUE\0All files (*.*)\0*.*\0"
IDS_2076 "Host CD/DVD Drive (%c:)"
IDS_2077 "Click to capture mouse"
IDS_2078 "Press F12-F8 to release mouse"
@@ -818,7 +819,7 @@ BEGIN
IDS_2148 "CH Flightstick Pro"
IDS_2149 "Microsoft SideWinder Pad"
IDS_2150 "Thrustmaster Flight Control System"
IDS_2151 "CD-ROM images (*.ISO;*.CUE)\0*.ISO;*.CUE\0All files (*.*)\0*.*\0"
IDS_2151 "Disabled"
IDS_2152 "None"
IDS_2153 "AT Fixed Disk Adapter"
IDS_2154 "Internal IDE"

View File

@@ -2417,7 +2417,7 @@ LRESULT CALLBACK StatusBarProcedure(HWND hwnd, UINT message, WPARAM wParam, LPAR
break;
}
if (!file_dlg_w_st(hwnd, IDS_2151, cdrom_image[id].image_path, 0))
if (!file_dlg_w_st(hwnd, IDS_2075, cdrom_image[id].image_path, 0))
{
cdrom_drives[id].prev_host_drive = cdrom_drives[id].host_drive;
wcscpy(temp_image_path, wopenfilestring);