dev9ghz: fix a typo...

This commit is contained in:
TheLastRar 2015-06-19 15:39:49 +01:00
parent 5f068ec46a
commit 0d04ee440d
1 changed files with 1 additions and 1 deletions

View File

@ -91,6 +91,6 @@ void LoadConf() {
GetPrivateProfileString("DEV9", "Hdd", HDD_DEF, config.Hdd, sizeof(config.Hdd), file.c_str());
config.HddSize = GetPrivateProfileInt("DEV9", "HddSize", config.HddSize, file.c_str());
config.ethEnable = GetPrivateProfileInt("DEV9", "ethEnable", config.ethEnable, file.c_str());
config.ethEnable = GetPrivateProfileInt("DEV9", "hddEnable", config.hddEnable, file.c_str());
config.hddEnable = GetPrivateProfileInt("DEV9", "hddEnable", config.hddEnable, file.c_str());
}