Remove the depth range hack.

Ths removes the game-specific hack to workaround depth issues.
This commit is contained in:
Unknown W. Brackets 2016-01-03 12:05:59 -08:00
parent 6c38b22467
commit 18cdf9f352
9 changed files with 0 additions and 99 deletions

View file

@ -42,5 +42,4 @@ void Compatibility::Clear() {
void Compatibility::LoadIniSection(IniFile &iniFile, std::string section) {
iniFile.Get(section.c_str(), "NoDepthRounding", &flags_.NoDepthRounding, flags_.NoDepthRounding);
iniFile.Get(section.c_str(), "PixelDepthRounding", &flags_.PixelDepthRounding, flags_.PixelDepthRounding);
iniFile.Get(section.c_str(), "DepthRangeHack", &flags_.DepthRangeHack, flags_.DepthRangeHack);
}