nullDC.cpp updated to support other OSes

This commit is contained in:
Marcel Szewczyk 2019-01-09 17:20:09 +01:00
parent 7e900a4e86
commit 2327c1b83e
1 changed files with 8 additions and 0 deletions

View File

@ -299,6 +299,10 @@ void LoadSettings()
settings.rend.UseMipmaps = cfgLoadInt("config", "rend.UseMipmaps", 1);
settings.rend.WideScreen = cfgLoadInt("config", "rend.WideScreen", 0);
settings.rend.Clipping = cfgLoadInt("config", "rend.Clipping", 1);
settings.rend.
VerticalResolution = cfgLoadInt("config", "rend.VerticalResolution", 100);
settings.rend.
HorizontalResolution = cfgLoadInt("config", "rend.HorizontalResolution", 100);
settings.pvr.subdivide_transp = cfgLoadInt("config", "pvr.Subdivide", 0);
@ -366,6 +370,10 @@ void LoadCustom()
settings.dynarec.safemode = cfgGameInt(reios_id,"Dynarec.safemode", settings.dynarec.safemode);
settings.rend.ModifierVolumes = cfgGameInt(reios_id,"rend.ModifierVolumes", settings.rend.ModifierVolumes);
settings.rend.Clipping = cfgGameInt(reios_id,"rend.Clipping", settings.rend.Clipping);
settings.rend.
VerticalResolution = cfgGameInt(reios_id, "rend.VerticalResolution", settings.rend.VerticalResolution);
settings.rend.
HorizontalResolution = cfgGameInt(reios_id, "rend.HorizontalResolution", settings.rend.HorizontalResolution);
settings.pvr.subdivide_transp = cfgGameInt(reios_id,"pvr.Subdivide", settings.pvr.subdivide_transp);