Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Go to H Key Current User, Software, SteamPopcap or Steam or Popcap (It's been a while since I used Regedit, will edit if you tell me where you found Zuma Revenge outta the three folders), Zuma's Revenge, then tinker the HiRes function to zero?
I'd already tried that though, didn't work.
Here's what PopCap say regarding High-Res Mode:
Note: For hi-res mode, you need at least 768MB of RAM and at least 92MB of video RAM, as well as a desktop resolution greater than or equal to 1000 pixels in height.
But I have all that! No fair!
That didnt work for me
Search for the following two functions (line 53):
/* 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; }
Replace those with:
function(int) GetAppDefaultRes { var bool isHiResHardware = call IsNVidiaOrATI(); log("isHiResHardware = " + isHiResHardware);
return 1200;
}
function(bool) IsHiResSupported { return true; }
From PC Gaming wiki
1> The hack Kakisgr mentioned, the two functions in my compat.cfg look like this:
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;
} */
return 1200;
}
function(bool) IsHiResSupported
{
/* if (compat_AppVidMemory < 92)
return false; */
return true;
}
2> After you modified the compat.cfg you need to manually flip HiRes mode in the registry, like Pac-Fan mentioned. You need to flip the "HiRes" bit from 0 to 1 in HKEY_CURRENT_USER\SOFTWARE\PopCap\ZumasRevenge
When you run the game you will immediately see glorious high resolution textures. Also hires mode in the options is enabled.
Succesfully tested on a box with the latest and greatest hardware. Enjoy!