Nemoder said:
Same problem here however I waited for some time and it eventually started showing some game screens but no credit text at all until the "Thank You" screen at the end.
This is due to the game trying to load incorrect filenames. The problem is that on Linux the filenames are case-sensitive:
Loading file: credit.tsc
(Could not find!)
Loading file: CREDIT01.bmp
(Could not find!)
Loading file: ogph/CREDIT01.bmp
(Could not find!)
Loading file: CREDIT02.bmp
(Could not find!)
Loading file: ogph/CREDIT02.bmp
(Could not find!)
…
The following filename changes need to be made:
To prevent the game from crashing when going into the 'Lounge' room:
data/base/Stage/Lounge.{pxe,pxm,tsc} -> data/base/Stage/lounge.{pxe,pxm,tsc}
To allow the credits to work properly and the game to finish:
data/base/Credit.tsc -> data/base/credit.tsc
data/base/Credit01.bmp -> data/base/CREDIT01.bmp
data/base/Credit02.bmp -> data/base/CREDIT02.bmp
data/base/Credit03.bmp -> data/base/CREDIT03.bmp
data/base/Credit04.bmp -> data/base/CREDIT04.bmp
data/base/Credit05.bmp -> data/base/CREDIT05.bmp
data/base/Credit06.bmp -> data/base/CREDIT06.bmp
data/base/Credit07.bmp -> data/base/CREDIT07.bmp
data/base/Credit08.bmp -> data/base/CREDIT08.bmp
data/base/Credit09.bmp -> data/base/CREDIT09.bmp
data/base/Credit10.bmp -> data/base/CREDIT10.bmp
data/base/ogph/Credit01.bmp -> data/base/ogph/CREDIT01.bmp
data/base/ogph/Credit02.bmp -> data/base/ogph/CREDIT02.bmp
data/base/ogph/Credit03.bmp -> data/base/ogph/CREDIT03.bmp
data/base/ogph/Credit04.bmp -> data/base/ogph/CREDIT04.bmp
data/base/ogph/Credit05.bmp -> data/base/ogph/CREDIT05.bmp
data/base/ogph/Credit06.bmp -> data/base/ogph/CREDIT06.bmp
data/base/ogph/Credit07.bmp -> data/base/ogph/CREDIT07.bmp
data/base/ogph/Credit08.bmp -> data/base/ogph/CREDIT08.bmp
data/base/ogph/Credit09.bmp -> data/base/ogph/CREDIT09.bmp
data/base/ogph/Credit10.bmp -> data/base/ogph/CREDIT10.bmp