GS-config: Remove Accurate Date from the config.

This commit is contained in:
lightningterror 2022-09-07 11:25:18 +02:00 committed by refractionpcsx2
parent 3d647fe55a
commit 62adad0739
2 changed files with 0 additions and 3 deletions

View File

@ -459,7 +459,6 @@ struct Pcsx2Config
bool bool
HWDisableReadbacks : 1, HWDisableReadbacks : 1,
AccurateDATE : 1,
GPUPaletteConversion : 1, GPUPaletteConversion : 1,
AutoFlushSW : 1, AutoFlushSW : 1,
PreloadFrameWithGSData : 1, PreloadFrameWithGSData : 1,

View File

@ -323,7 +323,6 @@ Pcsx2Config::GSOptions::GSOptions()
OsdShowIndicators = true; OsdShowIndicators = true;
HWDisableReadbacks = false; HWDisableReadbacks = false;
AccurateDATE = true;
GPUPaletteConversion = false; GPUPaletteConversion = false;
AutoFlushSW = true; AutoFlushSW = true;
PreloadFrameWithGSData = false; PreloadFrameWithGSData = false;
@ -543,7 +542,6 @@ void Pcsx2Config::GSOptions::ReloadIniSettings()
GSSettingBool(OsdShowIndicators); GSSettingBool(OsdShowIndicators);
GSSettingBool(HWDisableReadbacks); GSSettingBool(HWDisableReadbacks);
GSSettingBoolEx(AccurateDATE, "accurate_date");
GSSettingBoolEx(GPUPaletteConversion, "paltex"); GSSettingBoolEx(GPUPaletteConversion, "paltex");
GSSettingBoolEx(AutoFlushSW, "autoflush_sw"); GSSettingBoolEx(AutoFlushSW, "autoflush_sw");
GSSettingBoolEx(PreloadFrameWithGSData, "preload_frame_with_gs_data"); GSSettingBoolEx(PreloadFrameWithGSData, "preload_frame_with_gs_data");