aboutsummaryrefslogtreecommitdiff
path: root/engines
AgeCommit message (Collapse)Author
2012-09-26JANITORIAL: Remove trailing whitespaces.Johannes Schickel
Powered by: git ls-files "*.cpp" "*.h" "*.m" "*.mm" | xargs sed -i -e 's/[ \t]*$//'
2012-09-26PEGASUS: Remove trailing whitespaces.Johannes Schickel
Powered by: git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/[ \t]*$//'
2012-09-25PEGASUS: Fix minor formatting issueMatthew Hoops
2012-09-25PEGASUS: Initialize _duration in RobotShipMatthew Hoops
2012-09-25TONY: Use debug channel for fading messagesStrangerke
2012-09-25TOUCHE: Add more font entries to French ToucheWillem Jan Palenstijn
The nbsp at position 255 (assuming CP863) was missing (bug #3571138).
2012-09-25TONY: Replace abortGame() with nicer error() calls.Alyssa Milburn
2012-09-25TONY: Don't error out on invalid ReleaseOwnership calls.Alyssa Milburn
A script triggers this at the end of the scene where you give the flowers to the bearded woman.
2012-09-24TONY: Don't mute all sound when using sound config dialogWillem Jan Palenstijn
Thanks to fuzzie for noticing this.
2012-09-24WINTERMUTE: Fix leakWillem Jan Palenstijn
2012-09-24CONFIGURE: Mark some engines off as requiring 16bit color supportMatthew Hoops
2012-09-24WINTERMUTE: Remove unnecessary semicolons.Torbjörn Andersson
2012-09-23SCUMM: Add check for resource fork for ".iMUSE Setups".Johannes Schickel
This should help identify incorrect dumps/file naming like what (probably) happened in bug #3570973 "FOA: Doesn't start anymore after adding Mac sound support".
2012-09-22PEGASUS: Fix saving while in the space chaseMatthew Hoops
2012-09-22PEGASUS: Don't allow loading/saving in a few more placesMatthew Hoops
Only affects loading/saving from the GMM
2012-09-22PEGASUS: Fix restoring correct biochip after sub chaseMatthew Hoops
2012-09-22PEGASUS: Fix movie pause/resumeMatthew Hoops
2012-09-22PEGASUS: Fixed claw scoring timeMatthew Hoops
It should be set when actually using the claw instead of just looking at the sub control monitors. Thanks to Keith Kaisershot (blitter) for spotting
2012-09-21AGOS: Rewrite note on events with velocity 0 to note off events in ↵Johannes Schickel
MidiParser_S1D.
2012-09-21VIDEO: Make getCurFrame declaration consistentWillem Jan Palenstijn
The declaration used int32 while the definition used int. This should fix building on AmigaOS4 (bug #3570577).
2012-09-20PEGASUS: Fix stopping Mercury scoringMatthew Hoops
Thanks to Keith Kaisershot (blitter) for figuring it out
2012-09-20PEGASUS: Fix avoiding Mars robot scoringMatthew Hoops
Thanks to Keith Kaisershot (blitter) for spotting
2012-09-21TOLTECS: Replace ceil with integer maths.Johannes Schickel
This removes an unnecessary use of floating point maths.
2012-09-21PEGASUS: "Fix" segmentation fault for DC toolchain when compiling ↵Johannes Schickel
shuttlehud.cpp. It seems the explicit destructor of ShuttleHUD is problematic. When I move it's implementation to shuttlehud.cpp it does not segfault. Removing it on the other hand also does not cause it to segfault. So I chose the latter, since it has no special implementation anyway.
2012-09-21PEGASUS: Replace FunctionPtr by our Functor code in Common.Johannes Schickel
This "fixes" a segmentation fault in our buildbot's toolchain for DC. The segmentation fault occured while compiling engines/pegasus/ai/ai_condition.cpp. Thanks to clone2727 for looking over this and testing it.
2012-09-20PEGASUS: Prevent recalling from Prehistoric without the historical logMatthew Hoops
Fixes an original game bug
2012-09-20Merge pull request #275 from clone2727/pegasusclone2727
Pegasus engine (The Journeyman Project: Pegasus Prime)
2012-09-20SCUMM: Update commentsMatthew Hoops
2012-09-20SCUMM: Restrict the Mac m68k v5 driver to MI2/Indy4Matthew Hoops
Shouldn't be used with MI1
2012-09-20SCUMM: Add support for Indy4 Mac 68k soundMatthew Hoops
2012-09-20SCUMM: Always use the Mac sound output for MI2 Mac.Johannes Schickel
Formerly it wasn't used when the user selected a MIDI output in the options. Thanks to clone2727 for noticing.
2012-09-20SCUMM: Implement support for special sfx in MI2 Mac.Johannes Schickel
This also increases the savegame version, since it introduces a new Instrument subclass.
2012-09-20SCUMM: Implement support for Monkey Island 2 Mac music.Johannes Schickel
This is a initial RE of the audio output Monkey Island 2 Mac uses. Support for special sound effects is not in there yet.
2012-09-20SCUMM: Extend comment about SysEx manufacturer 0x97.Johannes Schickel
2012-09-20SCUMM: Don't play SBL effects in MI2 mac.Johannes Schickel
The original does not do this either.
2012-09-19SCUMM: Enable CMS for the MI1 demoMatthew Hoops
2012-09-16Merge pull request #278 from bluegr/pcxdecoderFilippos Karapetis
GRAPHICS: Add a PCX decoder
2012-09-15WINTERMUTE: Disable aspect-ratio correction for now.Einar Johan Trøan Sømåen
2012-09-15TSAGE: Add missing motorcycle sound arriving at police station in Blue ForcePaul Gilbert
2012-09-14DREAMWEB: Increase _operand1 buffer sizeTorbjörn Andersson
Theoretically, it should be almost as big as _inputLine, so let's make them the exact same size just for simplicity. This fixes crashes for me when trying to use very long parameters to the monitor's READ command, and could possibly fix a bug reported in the German version where you supposedly have to read "kurzmitteilung".
2012-09-14TOLTECS: Adapt the movie chunk buffer allocation codeFilippos Karapetis
Thanks to wjp and LordHoto for their feedback
2012-09-14HUGO: Use surface width instead of its pitch when copying to raw memory blobsFilippos Karapetis
This is according to wjp's suggestion - the pitch didn't make sense there
2012-09-12PEGASUS: Disable save compression by defaultMatthew Hoops
So they can be used by the original interpreter more easily (the type/creator codes still need to be set, though -- pegasus_save_types can handle that)
2012-09-12Revert "PEGASUS: Make setting the start time of a movie also seek"Matthew Hoops
This reverts commit b8bcbb46b47b30c87a0267211ae4aae4c61c4c78. 8808393b3a3428df2946d7967e52aba084c8ffe5 was the proper fix for the issue
2012-09-12Merge remote branch 'upstream/master' into pegasusMatthew Hoops
Conflicts: AUTHORS
2012-09-13HUGO: Switch to the common PCX decoderFilippos Karapetis
2012-09-13DREAMWEB: Switch to the common PCX decoderFilippos Karapetis
2012-09-13TUCKER: Switch to the common PCX decoderFilippos Karapetis
2012-09-13QUEEN: Switch to the common PCX decoderFilippos Karapetis
2012-09-11PEGASUS: Fix minor filling station glitchMatthew Hoops