Fixed the settings dialog, now it shows again.

This commit is contained in:
OBattler
2017-06-04 15:08:10 +02:00
parent cbfa682cb7
commit 9c79acd3c8
6 changed files with 24 additions and 20 deletions

View File

@@ -90,6 +90,7 @@ BEGIN
END
MENUITEM "S&tatus", IDM_STATUS
END
#ifdef ENABLE_LOG_TOGGLES
POPUP "&Logging"
BEGIN
#ifdef ENABLE_BUSLOGIC_LOG
@@ -123,6 +124,7 @@ BEGIN
# endif
#endif
END
#endif
POPUP "&Help"
BEGIN
MENUITEM "&About 86Box...", IDM_ABOUT

View File

@@ -29,7 +29,7 @@
#define DLG_ABOUT 101
#define DLG_STATUS 102
#define DLG_CONFIG 110
#define DLG_CFG_MAIN 110
#define DLG_CFG_MACHINE 111
#define DLG_CFG_VIDEO 112
#define DLG_CFG_INPUT 113

View File

@@ -4240,5 +4240,5 @@ static BOOL CALLBACK win_settings_main_proc(HWND hdlg, UINT message, WPARAM wPar
void win_settings_open(HWND hwnd)
{
DialogBox(hinstance, (LPCWSTR)DLG_CONFIG, hwnd, win_settings_main_proc);
DialogBox(hinstance, (LPCWSTR)DLG_CFG_MAIN, hwnd, win_settings_main_proc);
}