Another weekend another bug. I have my hopes high for this community's success rate is remarkable. We are actually considering putting SCIprogramming.com forum and some nicknames in the credits of the localization.
The game crashes right when these lines appear at the end of scene
"Suddenly,
a westbound flight
heads South!"
Through DosBox it also crashes at that point but with the brave in-game
It's script 380 causing the crash and I suspect it has to do with this snippet
(DrawPic 1 100)
(gLongSong2 stop:)
(Display ; "Suddenly, a westbound flight heads South!"
380
44
dsALIGN
alCENTER
dsCOLOR
global131
dsFONT
global175
dsWIDTH
318
dsCOORD
1
82
)
(= cycles 2)
)
(49
(gNumber newRoom: 385)
I've tried to "fix" it like
(Display ; "Suddenly, a westbound flight heads South!"
380 44
dsALIGN 1
alCENTER
dsCOLOR global131
dsFONT global175
dsWIDTH 318
dsCOORD 1 82
)
...but it's still crashing with different output
Any ideas how to fix it better than me?