Fixed a bug with floppy icons on the status bar;

Fixed a bug with CD-ROM menu items.
This commit is contained in:
OBattler
2017-05-15 01:55:25 +02:00
parent f85a808819
commit ba20130644
2 changed files with 13 additions and 11 deletions

View File

@@ -188,10 +188,10 @@ int file_dlg(HWND hwnd, WCHAR *f, char *fn, int save)
int file_dlg_w_st(HWND hwnd, int i, WCHAR *fn, int save)
{
file_dlg_w(hwnd, win_language_get_string_from_id(i), fn, save);
return file_dlg_w(hwnd, win_language_get_string_from_id(i), fn, save);
}
int file_dlg_st(HWND hwnd, int i, char *fn, int save)
{
file_dlg(hwnd, win_language_get_string_from_id(i), fn, save);
return file_dlg(hwnd, win_language_get_string_from_id(i), fn, save);
}