/* GetAppDefaultRes - returns the default art resolution to use.
/
function(int) GetAppDefaultRes { var bool isHiResHardware = call IsNVidiaOrATI(); log("isHiResHardware = " + isHiResHardware);
if (isHiResHardware && (compat_AppSysMemTotalMB >= 768) && (compat_AppOrigScreenHeight >= 1000) && (compat_AppVidMemory >= 92)) { return 1200; } else { return 600; }
}
function(bool) IsHiResSupported { if (compat_AppVidMemory < 92) return false; return true; }
Üstteki kodları altta verdiğim ile değiştir.
function(int) GetAppDefaultRes { var bool isHiResHardware = call IsNVidiaOrATI(); log("isHiResHardware = " + isHiResHardware);
return 1200;
}
function(bool) IsHiResSupported { return true; }