aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-02-19TUCKER: cleanup, removed unused variablesGregory Montoir
2011-02-19TUCKER: fix truncated action string in english versionGregory Montoir
2011-02-19TUCKER: fix #2872348 - walk bug by switching places in museumGregory Montoir
Looks like an original game glitch, prevent hard-coded sequence execution on location switch (after using map).
2011-02-18SCI: Fix compilation using MSVC 9strangerke
2011-02-18HUGO: Remove extra spaces at end of linesstrangerke
2011-02-18TUCKER: fix #3106714 - Wrong animation after TV offGregory Montoir
Some negative values are prefixed by 2 minus signs, skip one before passing the string to strtol.
2011-02-18ANDROID: Remove outdated build instructionsdhewg
See http://wiki.scummvm.org/index.php/Compiling_ScummVM/Android
2011-02-18HUGO: Move several short function bodies from headers to cpp filesstrangerke
2011-02-18ANDROID: Disable mt32emu and timiditydhewg
mt32emu is using floats everywhere, and we don't have hardware-assisted floating point computations on this armeabi. most (if any) devices can't handle this timidity doesn't make sense, because there's no daemon to connect to
2011-02-18SCI: Fix window height for some Mac SCI1/1.1 gamesMatthew Hoops
Some games have removed the menu bar from the screen. This also fixes King's Quest V's icon bar.
2011-02-18ANDROID: Formattingdhewg
maybe now?
2011-02-18ANDROID: Formattingdhewg
and hoping for buildbot to pick up the toolchain now
2011-02-18ANDROID: dist target for buildbotdhewg
2011-02-18DC: Don't use $(VER_REV) with gitMarcus Comstedt
It seems unlikely that git will ever be able to produce a $(VER_REV) of 6 characters or less (the requirement for the version field in IP.BIN), so don't even try to use it.
2011-02-18Merge branch 'dhewg-android'dhewg
2011-02-18TOUCHE: fix op_not/op_neg opcodes namingGregory Montoir
2011-02-18TUCKER: cleanupGregory Montoir
2011-02-18TUCKER: fix #3106766 - Bubbles in Plugs Shop too heavyGregory Montoir
2011-02-18TUCKER: fix #3106542 - Ego drawn behind backgroundGregory Montoir
Looks like an original game glitch, the location 14 background bitmap contains some pixels in range [0xE0-0xF8] which is usually reserved ; add workaround.
2011-02-18TUCKER: fix #3106536 - Punk stuck (moving in background)Gregory Montoir
2011-02-18TUCKER: fix #3106520 - Prison water drop leaves a lineGregory Montoir
2011-02-18TUCKER: fix #2628056 - Text Dialogue is out of syncGregory Montoir
always synchronize text with speech sound. Note, some subtitles present in the datafiles are inconsistent (written text different from spoken).
2011-02-18TUCKER: fix #2627967 - Slow WalkingGregory Montoir
The waitForTimer calls in fade*Palette are actually duplicated ; mainLoop already handles timing.
2011-02-18HUGO: Avoid duplicated code in functions related to HUGO.DATstrangerke
2011-02-17TOOLS: Add debug output of output file position to skycpt tool.D G Turner
2011-02-17TOON: Initialise all locations.Alyssa Milburn
This stops the location save code from walking off the end of _rifBoxesFlags due to _numRifBoxes being invalid. Fix for bug #3183934 ("TOON: Crash on save").
2011-02-17TOON: Fix TextResource on big-endian.Alyssa Milburn
Fix for bug #3183943 ("TOON: No speech and no text").
2011-02-17SCI: Fix Mac icon bar vertical positioningMatthew Hoops
2011-02-17SCI: Fix Mac icon bar palettesMatthew Hoops
The Mac icon bar uses a palette from the executable and keeps those entries in the palette constantly. In addition, we're now performing gamma correction on the Mac-based colors so that they are in the same gamma as SCI. The color matching now works with this and using the same color finding as the Mac Palette Manager.
2011-02-16KYRA: Set type for NULL MIDI driver to PC Speaker.Johannes Schickel
This avoids a dialog about MT-32 to General MIDI conversion shown when running Kyrandia 1. Formerly the NULL MIDI output type was set to General MIDI, which caused the aforementioned dialog to show up, because Kyrandia 1 has no General MIDI tracks.
2011-02-16SCI: Fix Mixed-Up Mother Goose FM TownsMatthew Hoops
Thanks to alexbevi
2011-02-16SCI: Add workaround for uninitialized read in KQ5 FM TownsMatthew Hoops
Thanks to alexbevi
2011-02-16SCI: Add support for the KQ5 FM Towns resource formatMatthew Hoops
Thanks to alexbevi for providing details on the format
2011-02-16Merge branch 'master' of https://github.com/scummvm/scummvmathrxx
2011-02-16KYRA/LOL: add comments for last commitathrxx
2011-02-16KYRA/LOL: fixed hand item cursor bugathrxx
This fixes a bug when loading savegames with different active hand items via GMM. The mouse cursor was not set to the active hand item in these cases.
2011-02-16PARALLACTION: Use signed math in fadeTo.Alyssa Milburn
This fixes corruption during fades when low palette values end up negative.
2011-02-16N64: revert fix in svn r55745 and added a FIXMEFabio Battaglia
The sign comparison fix requires a little more work than int->uint change, else it throws an exception on the N64
2011-02-16SKY: Restore old sequence delay behaviour.dhewg
Since f621f6a5 processSequence() waited 60*3ms instead of 60ms. Restored that while getting rid of SEQ_DELAY. That in return allows us to relax the call frequency again (more sleeps, less cpu hogging).
2011-02-16SKY: Fix array access in debug code.Alyssa Milburn
The script data is already byteswapped at load time.
2011-02-16SKY: Stop intro sound before freeing the buffer.Alyssa Milburn
2011-02-15MOHAWK: Shorten Myst stack classes namesBastien Bouclet
2011-02-15MOHAWK: Put togeter the Myst stack classes in a namespaceBastien Bouclet
2011-02-15MOHAWK: Implement Mechanical opcode 201, staircase initBastien Bouclet
2011-02-15MOHAWK: Add a workaround for a missing image when going up the stairs in ↵Bastien Bouclet
Mechanical.
2011-02-15MOHAWK: Implement Mechanical opcodes 203 and 104, snake boxBastien Bouclet
2011-02-15MOHAWK: Implement Mechanical opcode 100Bastien Bouclet
2011-02-15MOHAWK: Implement Mechanical opcode 200Bastien Bouclet
2011-02-15HUGO: Replace cypher by a global variable, clean engine destructorstrangerke
2011-02-15SCI: Fill in the remaining Mac-specific kPlatform subopsMatthew Hoops