https://bugs.winehq.org/show_bug.cgi?id=56079
Bernhard Übelacker bernhardu@mailbox.org changed:
What |Removed |Added ---------------------------------------------------------------------------- CC| |bernhardu@mailbox.org
--- Comment #2 from Bernhard Übelacker bernhardu@mailbox.org --- This installer calls GetDiskFreeSpaceA short before the MessageBoxA. When following where the free disk space is retrieved one gets to this location which limits the returned value depending on the windows version: https://gitlab.winehq.org/wine/wine/-/blob/b89d9f3145545e335278001d2a3c8992a...
And indeed, setting windows version to ME makes the installer no longer show this message. Unfortunately later the installer tries to do a CreateFileA("D:\SETUP\..\LOCAL\.") which fails, maybe due to readonly directories, and crashes. I copied the CD content to c:, fixed permissions with. find cdrom0 -type d -print0 | xargs -0 chmod 755 find cdrom0 -type f -print0 | xargs -0 chmod 644 Then I could install from the resulting directory. And start the game, but the player seems not moveable.
But in the end setting windows version to ME would fix showing this bugs error.