Age | Commit message (Collapse) | Author |
|
These are flagged by GCC if -Wswitch-default is enabled.
|
|
|
|
These were reported by Henke37 via IRC.
|
|
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;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
According to D4 manual only mouse/key/timeout event can have primary
handler
|
|
Might change semantics by calling the standard chain for input events.
That is what the D4 docs suggest anyway.
|
|
This follows from D4 docs.
Changes semantics, *might* break stuff.
|
|
|
|
This appears to be the correct order from docs and makes code easier to
reorder.
*Might* break stuff though.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
I'm not sure whether this should go here or in Director.
I'm leaving it here because _dontPassEvent changes the semantics of event handling.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|