aboutsummaryrefslogtreecommitdiff
path: root/engines
AgeCommit message (Collapse)Author
2013-04-19WINTERMUTE: Rename transfer(void *) to transferPtr(void *) to avoid ↵Einar Johan Trøan Sømåen
overload-misses.
2013-04-19WINTERMUTE: Initialize member _gameRef in SaveThumbHelperEinar Johan Trøan Sømåen
2013-04-19Merge pull request #322 from fingolfin/fix-clang-warningsJohannes Schickel
Fix clang warnings
2013-04-19MOHAWK: Try LB subpage 0 if loading subpage 1 fails.Alyssa Milburn
2013-04-19GOB: Add a call to Inter::animPalette() in the hotspot checkerSven Hesse
The original has the call there too, as confirmed using the disasm of the gob3 binary. This fixes bug #3611208.
2013-04-19HOPKINS: Remove useless endless loop in AnimationManagerStrangerke
2013-04-19HOPKINS: Simplify code in checkSounds()Strangerke
2013-04-19HOPKINS: Remove dead code and out of bound access in SoundManagerStrangerke
2013-04-19HOPKINS: Fix missing break in ScriptManager. CID 1003759Strangerke
2013-04-19MOHAWK: Add LB function name aliases.Alyssa Milburn
2013-04-19HOPKINS: Remove dead code in ScriptManagerStrangerke
2013-04-19MOHAWK: Fix bug in View::setModule (thanks ST).Alyssa Milburn
2013-04-19MOHAWK: Allow skipping LB videos, plus other video bits.Alyssa Milburn
2013-04-19MOHAWK: Some LB bytecode improvements.Alyssa Milburn
2013-04-19MOHAWK: Implement LB's kTokenEval.Alyssa Milburn
2013-04-19MOHAWK: Implement kLBXDataFileAddSection/SetKey.Alyssa Milburn
2013-04-19HUGO: Initialize variables in Hugo engine constructor. CID 1002886Strangerke
2013-04-19JANITORIAL: Add a CRLF at the end of the file to fix compilation using MSVC ↵Strangerke
(complete previous commit)
2013-04-19JANITORIAL: Add a CRLF at the end of the file to fix compilation using MSVCStrangerke
2013-04-18AGI: Silence another clang varMax Horn
Reading an array without using the resulting value has no effect. In any case, this code still looks like it may be broken, so somebody who knows more about AGI should perhaps investigate this closer.
2013-04-18WINTERMUTE: Do not us char literals to index an arrayMax Horn
This silences a clang warning
2013-04-18HOPKINS: Replace non-ASCII characters by octal string literalsMax Horn
This silences a clang warning. It seems like a good idea, too: non-ASCII chars in string constants are prone to break as a result of (possibly unintentional) encoding conversions (which one can configure git to perform).
2013-04-18SCI: Remove a bunch of unused private member variablesMax Horn
All instances uncovered by clang warnings.
2013-04-18ENGINES: Remove a bunch of unused private member variablesMax Horn
All instances uncovered by clang warnings.
2013-04-18ENGINES: Silence clang warning about unused private member _vmMax Horn
This affects the Console / debugger classes of multiple engines. An alternative solution would have been to remove the unused _vm member vars. However, it seems likely that in the future, the _vm member could be useful for methods added to the console. So instead, we add a simple assert(_vm) to silence the clang warning.
2013-04-18AGI: Get rid of unused SoundMgr parametersMax Horn
2013-04-18KYRA: (LOL) - fix bug in last commit for scene_lol.cppathrxx
2013-04-18WINTERMUTE: Add 'override' to most Script-related functions.Einar Johan Trøan Sømåen
2013-04-18WINTERMUTE: Use int32 instead of int in classes.Einar Johan Trøan Sømåen
2013-04-18SWORD25: Silence warning in the Lua codeMax Horn
This fixes warnings like this that crop up when compiling sword25 with Apple clang 4.2 (clang-425.0.28) (based on LLVM 3.2svn)
2013-04-18KYRA: (EOB) - silence warning about improper use of negative value in ↵athrxx
gui_eob.cpp
2013-04-18KYRA: (EOB) - fix possible null ptr dereference in gui_eob.cppathrxx
2013-04-18KYRA: (LOL) - add comment in gui_lol.cppathrxx
2013-04-18KYRA: (LOL) - add assert in items_lol.cpp (should silence warning about ↵athrxx
possible out of bounds access)
2013-04-18KYRA: (LOL) - fix warning about possible out of bounds access in lol.cppathrxx
2013-04-18KYRA: (EOB) - remove unused variable in scene_eob.cppathrxx
2013-04-18KYRA: (LOL) - fix possible null ptr dereference in scene_lol.cppathrxx
2013-04-18KYRA: (EOB) - remove dead code in screen_eob.cppathrxx
2013-04-18KYRA: (HOF) - fix possible null ptr dereference in sequences_hof.cppathrxx
2013-04-18KYRA: (HOF) - fix possible out of bounds array accessathrxx
2013-04-18KYRA: (EOB) - add assert in sprites_eob.cpp (might fix warning about ↵athrxx
possible null ptr deref)
2013-04-18KYRA: (EOB) - fix potential null ptr dereference in sprites_eob.cppathrxx
2013-04-18KYRA: (EOB) - fix warning (Logically dead code) in sprites_eob.cppathrxx
2013-04-18KYRA: (LOL) - fix warning (Unused pointer value) in sprites_lol.cppathrxx
2013-04-18KYRA: (LOL) - add comment in sprites_lol.cppathrxx
2013-04-18KYRA: (EOB) - add comment in timer_eob.cppathrxx
2013-04-18AGI: Fix typo in issetv opcodeWillem Jan Palenstijn
This fixes bug #3611262
2013-04-18WINTERMUTE: Get Renderer from BaseEngine, not BaseGame in BaseClasses.Einar Johan Trøan Sømåen
2013-04-18WINTERMUTE: Use BaseEngine for Logging, not _gameRef in base-classes.Einar Johan Trøan Sømåen
2013-04-18WINTERMUTE: Avoid including BaseGame in PartEmitter.Einar Johan Trøan Sømåen