mirror of https://github.com/snes9xgit/snes9x.git
Fix load with preview file names and time stamps on extra banks
This commit is contained in:
parent
0c547f3486
commit
d5ba1c6017
|
@ -126,7 +126,7 @@ void CSaveLoadWithPreviewDlg::load_slot_image_text(int slot, int bank, HWND hDlg
|
|||
SendMessage(GetDlgItem(hDlg, IDC_BUTTON_SLOT_1 + slot), BM_SETIMAGE, (WPARAM)IMAGE_BITMAP, (LPARAM)previewHbmps[slot]);
|
||||
|
||||
char filename[_MAX_PATH + 1];
|
||||
GetSlotFilename(slot, filename);
|
||||
GetSlotFilename(bank * SAVE_SLOTS_PER_BANK + slot, filename);
|
||||
Utf8ToWide filenameW(filename);
|
||||
|
||||
// text with filename and last write time
|
||||
|
|
Loading…
Reference in New Issue