Win32 - Movie Options Dialog - Fix so Full Savestate Load checkbox is updated on load
This commit is contained in:
parent
94c12f0116
commit
45a8c717b0
|
@ -1,3 +1,5 @@
|
|||
02-june-2010 - adelikat - Win32 - Movie Options Dialog - Fix so Full Savestate Load checkbox is updated on load
|
||||
|
||||
---r1984 - FCEUX 2.1.4a Release---
|
||||
---June 1 2010---
|
||||
01-june-2010 - zeromus - fix crash bug in fcm convert
|
||||
|
|
|
@ -41,6 +41,7 @@ void UpdateCheckBoxes(HWND hwndDlg)
|
|||
CheckDlgButton(hwndDlg, IDC_MOVIE_DISPLAYSUBTITLES, movieSubtitles ? BST_CHECKED : BST_UNCHECKED);
|
||||
CheckDlgButton(hwndDlg, IDC_MOVIE_SUBTITLESINAVI, subtitlesOnAVI ? BST_CHECKED : BST_UNCHECKED);
|
||||
CheckDlgButton(hwndDlg, IDC_MOVIE_AUTOBACKUP, autoMovieBackup ? BST_CHECKED : BST_UNCHECKED);
|
||||
CheckDlgButton(hwndDlg, IDC_FULLSAVESTATES, fullSaveStateLoads ? BST_CHECKED : BST_UNCHECKED);
|
||||
}
|
||||
|
||||
void CloseMovieOptionsDialog(HWND hwndDlg)
|
||||
|
|
Loading…
Reference in New Issue