aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-02-23ALL: Fix typo (existant->existent)Willem Jan Palenstijn
2013-02-18VIDEO: Fix Smacker crash, as per madmoose's suggestionTorbjörn Andersson
Apparently, in some movies the Smacker decoder would peek ahead past the end of the bitstream, even though it didn't necessarily use all of those bits later. Fix that by first checking how many bits are still available. (This was originally reported for the mg1shoot.smk cutscene in the 4 CD version of The Feeble Files.)
2013-02-18Merge pull request #311 from vyadh/masterDavid Turner
LURE: Fix bug #3604370 - "LURE: ANDROID, Action item scrolling too sensitive"
2013-02-17LURE: Fix bug #3604370 - ANDROID menus clickablevyadh
LURE: Fix bug #3604370 - "LURE: ANDROID, Action item scrolling too sensitive"
2013-02-17SCI: Fix bug #3538416 - "SCI: SQ4 CD text glitches in introduction"Filippos Karapetis
2013-02-17SCI: Fix bug #3604944 - "SCI: QFG1VGA: Missing dialogue when speaking to Kaspar"Filippos Karapetis
2013-02-16I18N: Update Hungarian translation from patch #3604064Thierry Crozat
2013-02-09NEWS: Mention FluidSynth settings dialog.Torbjörn Andersson
2013-02-07I18N: Update translations from source codeThierry Crozat
This adds the translation strings from the pegasus engine.
2013-02-07I18N: Update Czech translation from patch #3603683Thierry Crozat
2013-02-07Merge pull request #304 from lordhoto/configure-no-release-defaultJohannes Schickel
CONFIGURE: Never enable release_build by default.
2013-02-06WINTERMUTE: Use case-insensitive path-lookup when opening DiskFiles.Einar Johan Trøan Sømåen
2013-02-06WINTERMUTE: Get rid of BaseImage.h inclusion in BaseGame.Einar Johan Trøan Sømåen
2013-02-06WINTERMUTE: Privatize a few more members in BaseGame.Einar Johan Trøan Sømåen
2013-02-04PEGASUS: Make the demo menu music start before the splash screenMatthew Hoops
2013-02-04MT32: Also attempt to load roms named CM32L_CONTROL.ROM / CM32L_PCM.ROMFilippos Karapetis
This was accidentally removed in commit 5711d23
2013-02-04MT32: Sync with the latest changes in muntFilippos Karapetis
This syncs our code with munt commit ee380de
2013-02-04PEGASUS: Fix minor energy bar glitch while calibratingMatthew Hoops
Need to set the energy level before showing it
2013-02-04TRANSLATION: Mark pegasus.cpp as translatableMatthew Hoops
2013-02-04PEGASUS: Limit the accepted characters in save file namesMatthew Hoops
2013-02-04PEGASUS: Sort save file names alphabeticallyMatthew Hoops
2013-02-04I18N: Update Hungarian translation from patch #3603156Thierry Crozat
2013-02-04CREDITS: Fix display of credits with non ISO-8859-1 charsetsThierry Crozat
The credits.pl script now prints both the ASCII and ISO-8859-1 strings in the credits.dat file when they are different. The About dialog then chooses either one or the other depending on the current charset used. This fixes bug #3539986
2013-02-03PEGASUS: Fix the pressure door 'static' screensMatthew Hoops
This does not do a full implementation of master time bases for the one case in the game that uses it.
2013-02-03SWORD25: Fix some spacing in LUAFilippos Karapetis
2013-02-03SWORD25: Replace calls to LUAI_THROW() with error() in LUAFilippos Karapetis
This removes one of the uses of setjmp(), but its use in LUAI_TRY still remains
2013-02-03I18N: Update translation files from source codeThierry Crozat
2013-02-03GUI: Center Launcher.Version in all themes.Johannes Schickel
Now that we actually use the textalign field of Launcher.Version the version would be left aligned by default. This looks odd for the classic theme and the low resolution version of the modern theme and is contrary to the old "default" value, so I decided to center the string explicitly again.
2013-02-03GUI: Fix text alignment for the version in the launcher.Johannes Schickel
Formerly in LauncherDialog::reflowLayout an incorrect way to query the acutal text alignment was used for the static text widget used for the ScummVM version.
2013-02-02Merge pull request #308 from hasufell/masterJohannes Schickel
fix build under et_EE locale
2013-02-01MACOSX: Fix compilation with the 10.2.8 SDKMatthew Hoops
This is a pretty bad hack of not using the kMusicDeviceProperty_SoundBankFSRef symbol and using its value instead. It felt wrong breaking 10.2.8 support just because of Soundfonts.
2013-02-01MACOSX: Load soundfonts using FSRef instead of FSSpec on 10.5Matthew Hoops
Fixes bug #3602452
2013-02-01CONFIGURE: Fix build under et_EE localehasufell
Freetype-config reports a broken include dir when et_EE locale is used. We set LC_ALL and LANGUAGE to "C" explicitly like autoconf does to force consistent behavior.
2013-02-01WINTERMUTE: Avoid applying color-keys to ALL images with bpp >= 3.Einar Johan Trøan Sømåen
2013-02-01WINTERMUTE: Apply color-key if no alpha-channel is presentEinar Johan Trøan Sømåen
(Instead of using the bpp to detect it).
2013-02-01GRAPHICS: Let JPEGs pixelformat state 0 alpha bits.Einar Johan Trøan Sømåen
2013-02-01WINTERMUTE: Avoid using ldepxf/frexpfEinar Johan Trøan Sømåen
2013-02-01WINTERMUTE: Force the screen to black after loading/saving.Einar Johan Trøan Sømåen
2013-01-31WINTERMUTE: Redo the way floats are saved, break savegame compatibility with ↵Einar Johan Trøan Sømåen
WME Lite completely. (This also breaks compatibility with savegames from ScummVM prior to this commit, AND resets the Savegame-version, older savegames will have differing MAGIC-numbers in their headers, and will thus not be recognized).
2013-01-31CONFIGURE: Use -O3 for OpenPandora when optimizations are requested.Johannes Schickel
Formerly -O3 was only used for release builds.
2013-01-29PEGASUS: Fix lid sequences missing a frameMatthew Hoops
2013-01-29PEGASUS: Reset _lastMillis when changing rate in the timerMatthew Hoops
2013-01-29SCI: Use correct priority selector in SoundCmdWillem Jan Palenstijn
It was using 'pri' instead of 'priority', apparently due to a selector number->name translation error from 544daa5c31. Thanks to waltervn for spotting this.
2013-01-28Merge pull request #305 from giucam/bufferedseekableJohannes Schickel
Make BufferedSeekableReadStream use the buffer with SEEK_SET and SEEK_END
2013-01-28COMMON: Fix successive seeks in BufferedSeekableReadStream.Johannes Schickel
This fixes the failing test case added in da8eeb9dbed2102764b3ca0697d6882bae0402cc. Thanks to wjp for his input on this.
2013-01-28Merge pull request #306 from lordhoto/filechooser-hiddenJohannes Schickel
GUI: Allow user to display hidden files in the browser dialog.
2013-01-28BUILD: Add wintermute.zip to resource file for Windows builds.Kirben
2013-01-28WINTERMUTE: Move Resources out of binary and into wintermute.zipEinar Johan Trøan Sømåen
2013-01-27GUI: Allow user to display hidden files in the browser dialog.Johannes Schickel
This implements feature request #3600774 "File browser: show hidden files".
2013-01-27SCUMM: Update handling of non so resources in Loom Mac.Johannes Schickel
This changes the warning to a debug and also updates the comment a bit. Thanks to eriktorbjorn for checking Loom Mac in an emulator.