Version 3.0 of Photoshop
supported tabbed palettes and layers for thÂe first time.
Application Details:
Version: | 3.0 |
License: | Retail |
URL: | http://www.adobe.com/products/... |
Votes: | Marked as obsolete |
Latest Rating: | Garbage |
Latest Wine Version Tested: | 1.1.40 |
Maintainers: About Maintainership
What works
Installer.
What does not
Application reports an out of memory error and exits.
Workarounds
What was not tested
Uninstaller.
Hardware tested
Graphics:
Additional Comments
Wine's source can be hacked to let PS3 run.
Operating system | Test date | Wine version | Installs? | Runs? | Used Workaround? | Rating | Submitter | ||
Current | Ubuntu 8.10 "Intrepid" i386 (+ variants like Kubuntu) | Mar 13 2010 | 1.1.40 | Yes | No | No | Garbage | Ken Sharp | |
Show | Debian GNU/Linux 4.x "Etch" | Mar 01 2007 | 0.9.31. | Yes | No | No | Garbage | an anonymous user |
Bug # | Description | Status | Resolution | Other apps affected |
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.
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:
diff --git a/dlls/kernel32/heap.c b/dlls/kernel32/heap.c
index ead0778..7084e85 100644
--- a/dlls/kernel32/heap.c
+++ b/dlls/kernel32/heap.c
@@ -1359,7 +1359,7 @@ VOID WINAPI GlobalMemoryStatus( LPMEMORYSTATUS lpBuffer )
/* 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.
The following comments are owned by whoever posted them. WineHQ is not responsible for what they say.
by Conor Duey on Friday August 17th 2018, 20:30
Just use DOSBox. You have to setup Windows 3.X in DOSBox but that's easy. DOSBox can easily run Win16 applications.