From e5b34983a92706437fbd1849e15379da76eab958 Mon Sep 17 00:00:00 2001 From: mtabachenko Date: Mon, 11 Nov 2013 00:07:33 +0000 Subject: [PATCH] winport: - Slot2 device set to Auto by default; --- desmume/src/windows/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desmume/src/windows/main.cpp b/desmume/src/windows/main.cpp index 37dd9cb8c..bd107db3c 100644 --- a/desmume/src/windows/main.cpp +++ b/desmume/src/windows/main.cpp @@ -3158,7 +3158,7 @@ int _main() cmdline._slot1_fat_dir_type = 0; slot1_R4_path_type = cmdline._slot1_fat_dir_type; - int slot2_device_type = (NDS_SLOT2_TYPE)GetPrivateProfileInt("Slot2", "type", NDS_SLOT1_NONE, IniName); + int slot2_device_type = (NDS_SLOT2_TYPE)GetPrivateProfileInt("Slot2", "type", NDS_SLOT2_AUTO, IniName); win32_CFlash_cfgMode = GetPrivateProfileInt("Slot2.CFlash", "fileMode", ADDON_CFLASH_MODE_RomPath, IniName); win32_CFlash_cfgDirectory = GetPrivateProfileStdString("Slot2.CFlash", "path", ""); win32_CFlash_cfgFileName = GetPrivateProfileStdString("Slot2.CFlash", "filename", "");