The test results you have selected are very old and may not represent the current state of Wine.
Selected Test Results (selected in 'Test Results' table below)
What works
It doesn't start by default but just shows an error (File Not Found). Once it runs, everything works: menu, mouse, music, sound, graphics. You can change the resolution in file "BaseSettings.cfg".
What does not
Doesn't start by default. See "Extra comments" below to get it running.
What was not tested
Everything was tested.
Additional Comments
Doesn't start by default ("File Not Found..."). Workaround:
1. create script to start in main directory:
#!/bin/sh
# Change working directory to current directory:
DIRECTORY=$(cd `dirname $0` && pwd)
cd $DIRECTORY
# Start DeBlob.exe with parameter 'EN':
env WINEPREFIX="/$HOME/.wine" wine DeBlob.exe EN
2. If "template/Credits_EN/Info not found" error occurs:
Move the 3 template definitions from file "Assets/Menus/CreditsMenu_EN.overlay" to new file "Assets/Menus/00_CreditsMenu_EN.overlay". This workaround with the new file is due to the bad style of Ogre to ensure resource dependency with file names. Other systems = other file name order => missing/wrong dependencies.
After I got it running on the 64 Bit Ubuntu Linux, I copied everything to a 32 Bit Ubuntu 10.04 computer. But it showed the same error as before the workaround for the 64 Bit version. So I reverted the workaround and then it worked!
Note: use winetricks to install missing "msvcp80.dll"!
HOWTO
Doesn't start by default ("File Not Found..."). Workaround:
1. create script to start in main directory:
#!/bin/sh
# Change working directory to current directory:
DIRECTORY=$(cd `dirname $0` && pwd)
cd $DIRECTORY
# Start DeBlob.exe with parameter 'EN':
env WINEPREFIX="/$HOME/.wine" wine DeBlob.exe EN
2. If "template/Credits_EN/Info not found" error occurs:
Move the 3 template definitions from file "Assets/Menus/CreditsMenu_EN.overlay" to new file "Assets/Menus/00_CreditsMenu_EN.overlay". This workaround with the new file is due to the bad style of Ogre to ensure resource dependency with file names. Other systems = other file name order => missing/wrong dependencies.