Version 3.0 of Photoshop
supported tabbed palettes and layers for thÂe first time.
Old test results
The test results for this version are very old, and as such they may not represent the current state of Wine. Please consider submitting a new test report.
Selected Test Results (selected in 'Test Results' table below)
What works
Installer.
What does not
Application reports an out of memory error and exits.
Photoshop 3 may not run on modern PCs with large amounts of RAM (typically >2048MB).
This is a Photoshop bug, not a Wine bug. The same behaviour is apparent in Windows.
HOWTO
PS3 reports an "out of memory" message on computers with large amounts of RAM. This is not a Wine bug, the same occurs under Windows.
However, you can hack Wine to allow PS3 to run. The precise hack you want to use will vary depending on your system configuration, but the following patch is an example:
/* work around for broken photoshop 4 installer */
if ( lpBuffer->dwAvailPhys + lpBuffer->dwAvailPageFile >= 2U*1024*1024*1024)
- lpBuffer->dwAvailPageFile = 2U*1024*1024*1024 - lpBuffer->dwAvailPhys - 1;
+ lpBuffer->dwAvailPageFile = 2U*1024*1024 - lpBuffer->dwAvailPhys - 1;
/* limit page file size for really old binaries */
if (nt->OptionalHeader.MajorSubsystemVersion < 4)
Note: This patch affects memory allocation for ALL Wine applications. Make sure you understand what you are doing.
Do NOT submit test results for hacked versions of Wine.
As this is not a bug, it will never be fixed. Unless a third-party tool can be used to circumvent the issue, no further test results are needed and will probably be rejected.