Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-21 | KYRA: (EOB) - add debugger function (list_monsters) | athrxx | |
2013-04-21 | AGI: Fix sound deinit. CID 1004128 | Eugene Sandulenko | |
We really left sound gen leaked with preagi games. | |||
2013-04-21 | KYRA: Fix MIDI fade-out behaviour | Torbjörn Andersson | |
There are two ways that the music volume may be set: The setSourceVolume() specifies the current music volume, as ScummVM sees it. This is stored in _sources[].volume. The MIDI data itself can trigger volume events. These are handled by send(), which stores the volume - usually (always?) 100 - in _sources[_curSource].controllers[]. The volume is then adjusted by _sources[].volume. When music is faded out, setSourceVolume() is called repeatedly with progressively smaller values for the volume. What it should do, then, is to make sure that the volume is set to what was previously set to in send(), adjusted to the fading volume. At least, that's how I understand it. | |||
2013-04-21 | HOPKINS: Silence GCC warning | Torbjörn Andersson | |
2013-04-21 | HOPKINS: Fix missing break in switch CID 1003757 | Strangerke | |
2013-04-21 | HOPKINS: Enlarge _lockedAnims array to avoid potential out of bound access. ↵ | Strangerke | |
CID 1004012 | |||
2013-04-21 | HOPKINS: Removed spaces after asserts | Paul Gilbert | |
2013-04-21 | HOPKINS: Fix code related to _zoneLine | Strangerke | |
2013-04-21 | HOPKINS: More MAX_LINES cleanup | Strangerke | |
2013-04-21 | HOPKINS: Add extra sanity check CID 1004008 | Strangerke | |
2013-04-21 | HOPKINS: MAX_LINES cleanup | Willem Jan Palenstijn | |
2013-04-21 | WINTERMUTE: Fix the final int->int32 to allow AmigaOS4-compile. | Einar Johan Trøan Sømåen | |
2013-04-21 | HOPKINS: Improve test on lineData in testLine. CID 1003821 | Strangerke | |
2013-04-20 | SCI: Add extra sanity check | Willem Jan Palenstijn | |
2013-04-20 | HOPKINS: Fix missing break in characterRoute() CID 1003758 | Strangerke | |
2013-04-20 | HOPKINS: Fix check on index in LinesManager. CID 1004010 | Strangerke | |
2013-04-20 | WINTERMUTE: 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-20 | WINTERMUTE: Change ScriptValue to use int32. | Einar Johan Trøan Sømåen | |
2013-04-20 | WINTERMUTE: Further reduce the amount of int->int32-confusion. | Einar Johan Trøan Sømåen | |
2013-04-20 | WINTERMUTE: Fix a few more int->int32's spotted by fuzzie. | Einar Johan Trøan Sømåen | |
2013-04-20 | WINTERMUTE: Let TMEMBER_INT take int32, not int. | Einar Johan Trøan Sømåen | |
2013-04-20 | WINTERMUTE: Use int32 in coll_templ.h | Einar Johan Trøan Sømåen | |
2013-04-20 | SCI: Fix memory leak | Willem Jan Palenstijn | |
2013-04-20 | SCI: Fix resource type range checks | Willem Jan Palenstijn | |
2013-04-20 | SCI: Report sound stream loading errors | Willem Jan Palenstijn | |
2013-04-19 | SCI: Replace workaround for bug #3605269 by script patch | Willem Jan Palenstijn | |
2013-04-19 | WINTERMUTE: Change more int's to int32s. | Einar Johan Trøan Sømåen | |
2013-04-19 | WINTERMUTE: Add overrides to Font-classes. | Einar Johan Trøan Sømåen | |
2013-04-19 | WINTERMUTE: Replace a few more ints by int32s. | Einar Johan Trøan Sømåen | |
2013-04-19 | WINTERMUTE: Change transfer(int *val) to transfer(int32 *val) | Einar Johan Trøan Sømåen | |
2013-04-19 | WINTERMUTE: Rename transfer(void *) to transferPtr(void *) to avoid ↵ | Einar Johan Trøan Sømåen | |
overload-misses. | |||
2013-04-19 | WINTERMUTE: Initialize member _gameRef in SaveThumbHelper | Einar Johan Trøan Sømåen | |
2013-04-19 | Merge pull request #322 from fingolfin/fix-clang-warnings | Johannes Schickel | |
Fix clang warnings | |||
2013-04-19 | MOHAWK: Try LB subpage 0 if loading subpage 1 fails. | Alyssa Milburn | |
2013-04-19 | GOB: Add a call to Inter::animPalette() in the hotspot checker | Sven Hesse | |
The original has the call there too, as confirmed using the disasm of the gob3 binary. This fixes bug #3611208. | |||
2013-04-19 | HOPKINS: Remove useless endless loop in AnimationManager | Strangerke | |
2013-04-19 | HOPKINS: Simplify code in checkSounds() | Strangerke | |
2013-04-19 | HOPKINS: Remove dead code and out of bound access in SoundManager | Strangerke | |
2013-04-19 | HOPKINS: Fix missing break in ScriptManager. CID 1003759 | Strangerke | |
2013-04-19 | MOHAWK: Add LB function name aliases. | Alyssa Milburn | |
2013-04-19 | HOPKINS: Remove dead code in ScriptManager | Strangerke | |
2013-04-19 | MOHAWK: Fix bug in View::setModule (thanks ST). | Alyssa Milburn | |
2013-04-19 | MOHAWK: Allow skipping LB videos, plus other video bits. | Alyssa Milburn | |
2013-04-19 | MOHAWK: Some LB bytecode improvements. | Alyssa Milburn | |
2013-04-19 | MOHAWK: Implement LB's kTokenEval. | Alyssa Milburn | |
2013-04-19 | MOHAWK: Implement kLBXDataFileAddSection/SetKey. | Alyssa Milburn | |
2013-04-19 | HUGO: Initialize variables in Hugo engine constructor. CID 1002886 | Strangerke | |
2013-04-19 | JANITORIAL: Add a CRLF at the end of the file to fix compilation using MSVC ↵ | Strangerke | |
(complete previous commit) | |||
2013-04-19 | JANITORIAL: Add a CRLF at the end of the file to fix compilation using MSVC | Strangerke | |
2013-04-18 | AGI: Silence another clang var | Max 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. |