1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00

Add 'hacks' config option.

This commit is contained in:
Sergey Lipskiy 2014-10-28 10:28:32 +06:00
parent 8d37143331
commit 90b2d16170
4 changed files with 5 additions and 0 deletions

View File

@ -38,6 +38,8 @@ struct Config
u32 enableNoise;
u32 enableLOD;
u32 enableHWLighting;
u32 hacks;
};
extern Config config;

View File

@ -105,6 +105,7 @@ void Config_LoadConfig()
config.frameBufferEmulation.copyFromRDRAM = ConfigGetParamBool(g_configVideoGliden64, "EnableCopyColorFromRDRAM");
config.frameBufferEmulation.ignoreCFB = ConfigGetParamBool(g_configVideoGliden64, "EnableIgnoreCFB");
config.frameBufferEmulation.N64DepthCompare = ConfigGetParamBool(g_configVideoGliden64, "EnableN64DepthCompare");
config.hacks = 0;
}
#if 0

View File

@ -475,6 +475,7 @@ void Config_LoadConfig()
config.frameBufferEmulation.ignoreCFB = TRUE;
config.frameBufferEmulation.N64DepthCompare = FALSE;
config.enableLOD = TRUE;
config.hacks = 0;
}
void Config_DoConfig(HWND /*hParent*/)

View File

@ -120,6 +120,7 @@ void Config_LoadConfig()
config.frameBufferEmulation.ignoreCFB = TRUE;
config.frameBufferEmulation.N64DepthCompare = FALSE;
config.enableLOD = TRUE;
config.hacks = 0;
}
void Config_SaveConfig()