Age | Commit message (Collapse) | Author |
|
|
|
|
|
The delay was choosen based on hearing the delay
in the original Director 4 beep script.
|
|
- Converts beep called with zero args to beep(1)
- Beep arg starts counting at 1.
|
|
|
|
These are flagged by GCC if -Wswitch-default is enabled.
|
|
engines/director/lingo/lingo-funcs.cpp: In member function ‘void Director::Lingo::func_goto(Director::Datum&, Director::Datum&)’:
engines/director/lingo/lingo-funcs.cpp:194:39: warning: type qualifiers ignored on cast result type [-Wignored-qualifiers]
cleanedFilename += (const char) *p;
|
|
|
|
|
|
This was due to the greater than 0x7f being redundant for signed char.
|
|
|
|
|
|
|
|
|
|
|
|
Mac has had possibility to have 8-bit characters in their filenames.
In the modern world it goes with either codepages or UTF-8, which
makes it much less compatible. Trying to mitigate that
|
|
|
|
|
|
|
|
|
|
Currently, 'Gravity Ball' movie is launched every now and then in
The Apartment 3.0 due to some bug in hadlers call sequence.
Thus, rename it for the time being.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Now it loads the needed movie but crashes because there was no context
of script reloading
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|