aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-06-09NEVERHOOD: Add a debug console, together with a command to change roomsFilippos Karapetis
2013-06-08SAGA: Add "fallthrough" comments to switch. CID 1003742, 1003743Torbjörn Andersson
I'm almost certain these are intentional fallthroughs. It makes sense to handle the little-endian cases like the big-endian ones, with the added FLAG_LITTLE_ENDIAN.
2013-06-08LURE: Fix bad operator in "hotspot" debug command, CID 1004147Torbjörn Andersson
2013-06-08COMMON: Add basic documentation for RDFTWillem Jan Palenstijn
2013-06-08COMMON: Improve comment in CosineTable::CosineTable.Johannes Schickel
This commit changes the comment to use the same variable names as we do in the code. Furthermore, it also makes the comment a bit easier to grasp.
2013-06-08COMMON: Try to document the SineTable/CosineTable table entries.Johannes Schickel
2013-06-08COMMON: Save memory by allocating only required entries in Cosine-/SineTable.Johannes Schickel
The tables only contain (2^bitPrecision)/2 entries. The code allocated twice as many entries previously.
2013-06-08COMMON: Fix regression in SineTable creation.Johannes Schickel
This is a regression from f4ba8a6485b097a8ef1e2004d1af127243f379f1. The commit replaced the static cosine and sine tables with dynamically created ones. In the process of that a copy&paste error happened which made the sine table use the layout of the cosine table. This commit now changes the dynamically created sine tables to conform to the layout of the previous static tables.
2013-06-08Merge pull request #336 from madmoose/smacker-8-bit-audio-fixJohannes Schickel
VIDEO: Wrap 8-bit smacker audio properly
2013-06-06WINTERMUTE: Prevent warning about duplicate files when autodetecting.Tobia Tesan
Removed a call to BaseFileManager::registerPackages() in WintermuteEngine::getGameInfo(), as the constructor for BaseFileManager already calls registerPackages() once; another call should thus be superfluous.
2013-06-06WINTERMUTE: Fix for unnecessary "WARNING: getChildren() failed for path:"Tobia Tesan
FSNode::getChildren() was called assuming that it returns 0 iff success. Actually, it's the other way around.
2013-06-06MOHAWK: Use addSubDirectoryMatching for LB paths.Alyssa Milburn
2013-06-06COMMON: Add depth/flat parameters to addSubDirectoryMatching.Alyssa Milburn
2013-06-06BUILD: GNU Hurd & kFreeBSD supportDmitry Smirnov
From: Petr Salinger <Petr.Salinger@seznam.cz> Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=711320 Bug-ScummVM: https://sourceforge.net/tracker/?func=detail&atid=418820&aid=3614268&group_id=37116
2013-06-06ALL: Fix typo (succesful -> successful)Willem Jan Palenstijn
Thanks to 'onlyjob' on pull request #337 for pointing out an instance of this.
2013-06-06TINSEL: Revert the incorrect flagging of DW2 entries as CD versionsFilippos Karapetis
This reverts the changes done to the DW2 entries in commit d4a354c1. We only distinguish between floppy and CD versions if a game had both a CD and a floppy version released. DW2 was only released as a CD version, so the extra flagging of the DW2 entries as CD was redundant, and caused confusion regarding previous saved games to users that readded the DW2 detection entries after this change
2013-06-06HOPKINS: Fix glitch occurring in the intro of the Linux Demo.Strangerke
Thanks greencis for reporting it
2013-06-05BUILD: install tony.datWillem Jan Palenstijn
2013-06-05LURE: Use correct deallocator, CID 1004041Torbjörn Andersson
The memory was allocated with Memory::alloc(), so it should be freed with Memory::dealloc(), not delete.
2013-06-05HOPKINS: Fix 2 glitches reported by greencis in win95 demosStrangerke
2013-06-04SCUMM: Verify sample width in Digital iMUSE callback. CID 1002112Torbjörn Andersson
Verify that 'bits' really is one of 8, 12 or 16 before decoding the data. It's probably always the case (unless the data files are damaged) but if it isn't we'll either try to queue NULL to the audio stream, or queue the same buffer more than once, or free the buffer more than once. All of which are bad, though Coverity only noticed the last of these cases.
2013-06-02TONY: Fix memory leak on save game failure (CID 1003579)Torbjörn Andersson
Though shouldn't it also alert the user to the failure?
2013-06-02TONY: Fix potential memory leakTorbjörn Andersson
Unfortunately, I'm not sure where and when this function is called. But this should be correct. CID 1003575
2013-06-02NEVERHOOD: Fix crash in scene 1105 (teddy bear panel)Torbjörn Andersson
Leaving the panel in scene 1105 only worked if the panel was open. If the panel was closed, nothing would happen on the first click, and on the second it would crash. If I understood this correctly, it was because trying to leave while the panel was closed would (incorrectly) mark it as open, and then it would crash when trying to remove the objects behind the panel from the scene.
2013-06-02SCUMM: Remove unused variable _quitTorbjörn Andersson
CID 1003018
2013-06-01Merge pull request #332 from bluegr/roland_gs_cleanupJohannes Schickel
SCUMM: iMuse - Clean-up of Roland GS code (updated)
2013-06-01MAEMO: Update debian/changelogTarek Soliman
2013-06-01LURE: Add missing va_end()Torbjörn Andersson
CID 1002106
2013-06-01SAGA: Add missing "break"sTorbjörn Andersson
It seems pretty clear to me that these fallthroughs were not intentional, seeing how one of them could cause ITE to fall through to IHNM-specific code. CID 1003744, 1003745
2013-06-01NEVERHOOD: Removed debug (?) code that bypassed puzzleTorbjörn Andersson
The effect of the removed code was to bypass the potion-mixing puzzle while shrunken. The puzzle works fine for me, so there's no reason to keep this bypass. Also, it caused a dead code warning, CID 1022345.
2013-05-31NEWS: Specify date for 1.6.0Eugene Sandulenko
2013-05-31NEVERHOOD: Made multi-line function-line macros saferTorbjörn Andersson
Wrapped the code in the SetUpdateHandler(), SetMessageHandler(), SetSpriteUpdate(), SetFilterX(), SetFilterY() and NextState() macros in "do { ... } while (0)". Otherwise you may fool yourself because in "if (condition) macro();" the "if" will only cover the first statement of the macro. CID 1022340, 1022341, 1022342, 1022343
2013-05-31SCI: Add a workaround for a script bug in SQ5, room 800 - bug #3614145Filippos Karapetis
2013-05-29SKY: Try to avoid deadlocks with the mixer mutex.Alyssa Milburn
See bug #3512069.
2013-05-28HOPKINS: Fix crash in Polish demo - Bug #3613954Strangerke
2013-05-28NEVERHOOD: Silence two compiler warnings about set but unused variables.D G Turner
2013-05-28NEVERHOOD: Don't show mouse cursor on game startupFilippos Karapetis
This makes sure that the mouse cursor isn't visible during the intro
2013-05-28VIDEO: Wrap 8-bit smacker audio properlyThomas Fach-Pedersen
The accumulator 'bases' is 16-bit but when used in 8-bit audio we need to wrap as if 'bases' is 8-bit. Clipping on output is no longer required. This fixes noise in The Neverhood's in-game "making of" videos, particularly the section called "Construction, powertools & painting", hash 0x21080009. The intro video in The Neverhood is 16-bit audio and was not affected by this bug. No other videos or games have been tested.
2013-05-27CGE: Pass proper size of detection entries to AdvancedMetaEngine code.Johannes Schickel
This was forgotten to update in 0d50c67a3e4790d9e3d4b5ba13c7c0975b9ac2e0.
2013-05-27Merge pull request #334 from salty-horse/neverhoodjohndoe123
NEVERHOOD: Fix incorrect dark palette in Scene2206
2013-05-27NEVERHOOD: Fix invalid memory access in navigation scenesTorbjörn Andersson
When a new Smacker is opened, the old Smacker surface is deleted and a new one is created. Therefore, it has to be removed from the scene and the new one has to be added.
2013-05-26CGE: Fix warning in detectionStrangerke
Thanks clone2727 for reporting it
2013-05-26GUI: Fix the spelling of some variable/class namesMatthew Hoops
2013-05-26GUI: Add missing include for IBActionMatthew Hoops
Hopefully will fix compilation on older Mac versions
2013-05-26Merge pull request #307 from criezy/filebrowser-hidden-osxAlyssa Milburn
OSX: Allow user to display hidden files in the browser dialog.
2013-05-26HOPKINS: Fix bug #3613819 - Crash when loading a savegame in Win95 DemoStrangerke
2013-05-25PSP: Remove leftover debug statement to non-existant variable.D G Turner
This would cause a compilation error when the __PSP_DEBUG_PRINT__ define was enabled for debugging as the variable is non-existant.
2013-05-23WINTERMUTE: Fix erroneous _gameRef in BaseQuickMSGEinar Johan T. Sømåen
CID 1002323
2013-05-22HOPKINS: Update detection to avoid as much as possible the use of executablesStrangerke
2013-05-22I18N: Regenerate translations data fileThierry Crozat