aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-04-08VIDEO: Migrate SVQ1 codec WIP to Common::BitStream.D G Turner
2012-04-08VIDEO: Hookup SVQ1 codec to build system and QT Decoder.D G Turner
2012-04-08VIDEO: Add initial framework and data tables for Sorenson SVQ1 decoder.D G Turner
This is based on the SVQ1 decoder from FFMPEG.
2012-04-08GRAPHICS: Add YUV410 to RGB Conversion Functions, required for SVQ1.D G Turner
Thanks to clone2727 for these.
2012-04-04SCUMM: Fix spelling of lengthJoel Teichroeb
2012-04-04PARALLACTION: Fix spelling of lengthJoel Teichroeb
2012-04-04COMMON: Fix spelling of lengthJoel Teichroeb
2012-04-05KYRA: Silence const away cast warning by using non-const versions of strpbrk ↵Johannes Schickel
and strchr.
2012-04-05GROOVIE: Do not cast away const qualifier.Johannes Schickel
2012-04-05SWORD25: Do not cast away const qualifier.Johannes Schickel
2012-04-05SCI: Do not cast away const qualifier.Johannes Schickel
2012-04-04Merge pull request #221 from klusark/constJohannes Schickel
Fix casting away const
2012-04-04SCUMM/ARM: Fix crashes in ARM asm costume rendererWillem Jan Palenstijn
It was possible to bypass the initialization of r11, and mask was being read before the corresponding bounds check. Thanks to fuzzie for analysis and LordHoto for testing. This fixes bug #3500023 and a crash in the DOTT ending.
2012-04-04SCI: Bugfix for the GetAngle workaroundsFilippos Karapetis
Return a fake value instead of leaving random values in the accumulator
2012-04-03GRAPHICS: Fix casting away constJoel Teichroeb
2012-04-03SCUMM: Fix casting away constJoel Teichroeb
2012-04-02AGOS: Expand fix for bug #3512776 - SIMON1DOS French: Subtitle glitch in ↵Travis Howell
introduction.
2012-04-02IPHONE: Use InternalEvent directly.Johannes Schickel
2012-04-02IPHONE: Move event fetching implementation to iPhoneView.Johannes Schickel
2012-04-02IPHONE: Protect access to the event list via a mutex.Johannes Schickel
2012-04-02IPHONE: Use Common::List to store the event queue.Johannes Schickel
2012-04-01Merge pull request #219 from bohm/masterDavid Turner
GUI: Scrollbar button highlighting fix.
2012-04-01BASE: Construct empty String instead of using "".Johannes Schickel
2012-04-01AGOS: Fix bug #3512776 - SIMON1DOS French: Subtitle glitch in introduction.Travis Howell
2012-04-01SCI: Add workaround for SQ1SCI to fix engine abort in bug #3513765.D G Turner
This occurs while Roger is trying to move around the Pilot Droid in Ulence Flats.
2012-04-01SCI: Change the fix for the SQ1 PAvoider call to apply in all rooms againFilippos Karapetis
This bad call can be made in all rooms in Ulence Flats, after getting the Pilot Droid. Properly fixes script bug #3513207
2012-03-31ENGINES: Return all available custom GUI options if no target is specifiedFilippos Karapetis
This is used to set default settings for all custom game options when an engine starts
2012-03-31SCI: Make sure that the disable_dithering key existsFilippos Karapetis
2012-03-31SCI: Fix workaround for bug #3513207Filippos Karapetis
The associated call contains too few parameters, thus it shouldn't be made at all
2012-03-31SCI: Minor formatting fix to workarounds table.D G Turner
2012-03-31SCI: Add workaround for SQ1SCI to fix engine abort in bug #3513207.D G Turner
This occurs while Roger is trying to move around the Pilot Droid in various narrow cases.
2012-03-30AUDIO: Fix QDM2 extra data parsingMatthew Hoops
2012-03-30COMMON: Clean up the QuickTime class a bitMatthew Hoops
2012-03-30COMMON: Read in QuickTime extra data for SVQ3Matthew Hoops
2012-03-30GOB: Add a Spanish Amiga version of Gobliins 2Sven Hesse
As supplied by aldozx in the forums.
2012-03-30SKY: Minor formatting fix.D G Turner
2012-03-29GUI: Fixed scrollbar button highlighting and positioning.Martin Böhm
Fixes bug #3493324.
2012-03-29IPHONE: Add some more debug printfs to graphics related OSystem functionality.Johannes Schickel
2012-03-29GUI: Move "I18N" tagged comment to matching strings.Johannes Schickel
The strings are not marked for translation, so I am not sure why the comments are tagged with I18N though.
2012-03-29GUI: Add TODO/FIXME to PredictiveDialog::handleTickle.Johannes Schickel
2012-03-29GUI: Remove unnecessary goto in PredictiveDialog code.Johannes Schickel
2012-03-29GUI: Take advantage of Common::String::empty.Johannes Schickel
2012-03-29GUI: Constify some parameters/methods in PredictiveDialog.Johannes Schickel
2012-03-29GUI: Make some static strings in PredictiveDialog static + const.Johannes Schickel
2012-03-29GUI: Don't typedef Common::String in PredictiveDialog code.Johannes Schickel
2012-03-29GUI: Get rid of "using namespace Common" in predictivedialog.cpp.Johannes Schickel
2012-03-29GUI: Formatting fixes in the PredictiveDialog code.Johannes Schickel
2012-03-28Merge pull request #218 from singron/masterDavid Turner
SKY: Allow game to be loaded from main menu dialog while in-game control panel is open. (try 2)
2012-03-28SKY: Allow game to be loaded from main menu dialog while in-game control ↵Eric Culp
panel is open. Fixes bug #3448294
2012-03-28CGE: Close memory leak in savegame loading.D G Turner