aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-04-21HOPKINS: Improve test on lineData in testLine. CID 1003821Strangerke
2013-04-20SCI: Add extra sanity checkWillem Jan Palenstijn
2013-04-20HOPKINS: Fix missing break in characterRoute() CID 1003758Strangerke
2013-04-20HOPKINS: Fix check on index in LinesManager. CID 1004010Strangerke
2013-04-20AUDIO: Cleanup namingMatthew Hoops
2013-04-20AUDIO: Remove default makeADPCMStream rate/channels valuesMatthew Hoops
2013-04-20WINTERMUTE: Fix ScriptExtDate-saving (bump savegame-version to 1.2.1).Einar Johan Trøan Sømåen
This also fixes int->int32 in ScriptExtDate::transfer.
2013-04-20WINTERMUTE: Change ScriptValue to use int32.Einar Johan Trøan Sømåen
2013-04-20WINTERMUTE: Further reduce the amount of int->int32-confusion.Einar Johan Trøan Sømåen
2013-04-20WINTERMUTE: Fix a few more int->int32's spotted by fuzzie.Einar Johan Trøan Sømåen
2013-04-20WINTERMUTE: Let TMEMBER_INT take int32, not int.Einar Johan Trøan Sømåen
2013-04-20WINTERMUTE: Use int32 in coll_templ.hEinar Johan Trøan Sømåen
2013-04-20SCI: Fix memory leakWillem Jan Palenstijn
2013-04-20SCI: Fix resource type range checksWillem Jan Palenstijn
2013-04-20SCI: Report sound stream loading errorsWillem Jan Palenstijn
2013-04-19SCI: Replace workaround for bug #3605269 by script patchWillem Jan Palenstijn
2013-04-19WINTERMUTE: Change more int's to int32s.Einar Johan Trøan Sømåen
2013-04-19WINTERMUTE: Add overrides to Font-classes.Einar Johan Trøan Sømåen
2013-04-19WINTERMUTE: Replace a few more ints by int32s.Einar Johan Trøan Sømåen
2013-04-19WINTERMUTE: Change transfer(int *val) to transfer(int32 *val)Einar Johan Trøan Sømåen
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-19COMMON: Add ConfigFile::addSection function.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-18AUDIO: Remove unused MixerImpl::_syst member varMax Horn
2013-04-18VIDEO: Remove unused CDToonsDecoder::_currentFrame member varMax Horn
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