pq10099 - #saveImage does not work properly in runtime image ---------------------------------------------------------------- Affected Platforms: All Affected Features: Base Smalltalk Prerequisites: None Symptom: When #saveImage is run in development it will work ok. In v3 it also worked in runtime. When sent in runtime now it will reduce the image too much and results in an unusable image file. Workaround: The packaged image contains both RAM and ROM portions. The save image is only saving the RAM portion and when restarted, opens the original file to read the ROM portion. Unfortunately, the save image is also overwriting the original file so it cannot find the ROM portion, resulting in the fatal error 37. The vm should be changing the default save image name so this doesn't happen. As a workaround, use: System saveImage: to save the image to a different name.