nullDC.cpp updated to support other OSes
This commit is contained in:
parent
7e900a4e86
commit
2327c1b83e
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue