Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-09-26 | JANITORIAL: Remove trailing whitespaces. | Johannes Schickel | |
Powered by: git ls-files "*.cpp" "*.h" "*.m" "*.mm" | xargs sed -i -e 's/[ \t]*$//' | |||
2012-09-03 | TINSEL: Fix bug #3541542 - "DW: PSX version dies when pressing ESC in intro" | Filippos Karapetis | |
DW1 PSX seems to have its own scene skipping code for scenes 2 and 3, thus injecting our own causes it to hang. Scenes 2 and 3 can be skipped separately. | |||
2012-08-06 | TINSEL: Fixed portability issue with earlier savegames | Paul Gilbert | |
2012-07-15 | TINSEL: Fix bug #3541745 - "DW: PSX version has a too small Re-Start window" | Filippos Karapetis | |
2012-07-15 | TINSEL: Change SetMidiVolume() so that it doesn't start/stop music tracks | Filippos Karapetis | |
Previously, SetMidiVolume() would stop the currently playing track when the MIDI volume was set to 0. Now, the music track always plays, even when the volume is set to 0. This fixes bug #3541533 - "DW: Silencing music volume stops music" and resolves two FIXME comments | |||
2012-07-15 | TINSEL: Fix bug #3459999 - "TINSEL: DW Crash in Subtitle Menu" | Filippos Karapetis | |
2012-07-15 | TINSEL: Remove the GF_BIG_ENDIAN flag | Filippos Karapetis | |
2012-07-15 | TINSEL: Remove the GF_CD and GF_FLOPPY flags | Filippos Karapetis | |
2012-07-15 | TINSEL: Reorder the detection entries to split the DW1 and DW2 entries | Filippos Karapetis | |
2012-07-15 | TINSEL: Remove the GF_DEMO flag | Filippos Karapetis | |
2012-07-15 | TINSEL: Added script workaround for #3543624 - DW1 PSX demo idle animation | Paul Gilbert | |
2012-07-14 | TINSEL: Cleanup | Filippos Karapetis | |
2012-07-11 | TINSEL: Added MD5 detection entries for Discworld 1 Polish translation | Paul Gilbert | |
2012-07-09 | TINSEL: Fix bug #3541230 - "DW: PSX version locks up after using the book" | Filippos Karapetis | |
Removed the superfluous MIDI offset storing code. Now, the MIDI buffer is re-read when the music loops. This removes a static variable and also fixes another bug in the SEQ decoder. | |||
2012-06-07 | TINSEL: Remove unused member _scheduler in TinselEngine. | Johannes Schickel | |
This is a leftover from before the move of the coroutine code. | |||
2012-05-17 | TINSEL: Fix compiler warning | Paul Gilbert | |
2012-05-17 | TINSEL: Refactored Tinsel engine to use the Common coroutine scheduler | Paul Gilbert | |
2012-05-17 | COMMON: Moved the Tinsel Coroutine code into it's own Common class | Paul Gilbert | |
2012-05-03 | TINSEL: Add basic PSX SEQ playback support | Matthew Hoops | |
Instrument bank support is not implemented yet | |||
2012-05-03 | TINSEL: Capitalize 'demo' | Matthew Hoops | |
2012-02-22 | TINSEL: Rename globals to add g_ prefix. | Alyssa Milburn | |
2012-02-15 | JANITORIAL: Fix missing whitespace in pointer cast | Tarek Soliman | |
find -name '*.h' -or -name '*.cpp' | xargs sed -r -i 's@\(([A-Za-z0-9]+)\*\)@(\1 *)@g' This seems to have caught some params as well which is not undesirable IMO. It also caught some strings containing this which is undesirable so I excluded them manually. (engines/sci/engine/kernel_tables.h) | |||
2012-02-15 | JANITORIAL: Fix whitespace in pointer template arg | Tarek Soliman | |
2012-02-11 | TINSEL: Added extra fields to the savegame header for SCN/GRA usage and language | Paul Gilbert | |
New savegames that are created will no longer appear in the savegame list for different data versions or languages. | |||
2011-12-30 | TINSEL: Take advantage of KeyState::hasFlags. | Johannes Schickel | |
2011-12-08 | TINSEL: Replace usage of 'goto'. | D G Turner | |
2011-11-16 | LAUNCHER: Introduce GUIO0() in order to replace GUIO1(GUIO_NONE) | Strangerke | |
2011-11-16 | COMMON: Rename Common::set_to to Common::fill. | Johannes Schickel | |
This makes the name match with the name of the STL function with the same behavior. | |||
2011-11-14 | TINSEL: Don't leak _curChunk on exit. | Alyssa Milburn | |
2011-10-24 | LAUNCHER: Add GUIO_NOASPECT to tinsel | Strangerke | |
2011-10-23 | AD: Switched rest of the engines to new GUIO | Eugene Sandulenko | |
2011-10-20 | TINSEL: Cleaner fix for bug #2893946 - Psychiatrist savegame problem | Paul Gilbert | |
2011-10-18 | TINSEL: Bugfix for restoring DW1 savegames with a saved scene | Paul Gilbert | |
This happens, for example, when restoring a savegame of the dragon summoning book close-up. After restoring, you couldn't leave the close up. | |||
2011-10-16 | TINSEL: Revert of prior commits for #2893946 | Paul Gilbert | |
2011-10-14 | TINSEL: Alter previous DW1 bugfix so that DW2 still works properly | Paul Gilbert | |
2011-10-13 | TINSEL: Fix #3422433 ("DW2: US version uses UK graphics") | Torbjörn Andersson | |
According to dreammaster it should be enough to add cases for the US version in these two functions, but unfortunately he can't test it himself. I guess I should try to find the time to play through the game, but right now there's an annoying DW2 regression from commit d5690e0. See GitHub commit note for details. | |||
2011-10-04 | TINSEL: Bugfix for #2893946 - DW1 psychiatrist scene isn't playing | Paul Gilbert | |
2011-09-08 | TINSEL: Made some static data const. | Johannes Schickel | |
2011-08-24 | AUDIO: Rename Vag to XA | Matthew Hoops | |
Vag is really an XA container, and one that we do not have a decoder for (nor need) | |||
2011-08-13 | Merge pull request #63 from tsoliman/detection-tables | Filippos Karapetis | |
Some missing ADGF_CD and ADGF_UNSTABLE flags | |||
2011-08-08 | TINSEL: Code formatting | Max Horn | |
2011-08-07 | TINSEL: Use SAVEGAME_ID when getting savegame info, if a VM is instantiated | Filippos Karapetis | |
2011-08-07 | JANITORIAL: Remove trailing empty lines. | Christoph Mallon | |
2011-08-07 | TINSEL: Fixed deleting saved games from the launcher (bug #3387551) | Filippos Karapetis | |
2011-08-06 | TINSEL: Flag CD titles with ADGF_CD | Tarek Soliman | |
2011-08-06 | ALL: Reduce audio/ header dependency | Eugene Sandulenko | |
2011-06-20 | TINSEL: Don't leak running processes in Scheduler::reset(). | Alyssa Milburn | |
2011-06-20 | TINSEL: Fix/comment CORO_KILL_SELF macro. | Alyssa Milburn | |
This reverts 9573b1d2f54818f9bdac4a91e0a90b306ade7810, which changed the behaviour of (among other things) NewScene, which made Discworld uncompletable. Thanks to digitall for bisection/reproduction. | |||
2011-06-20 | ALL: Remove trailing whitespaces | Max Horn | |
This tries to make our code a bit more compliant with our code formatting conventions. For future use, this is the command I used: git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/[ \t]*$//' | |||
2011-06-14 | DETECTOR: Pass allFiles to AdvancedMetaEngine::fallbackDetect() | Max Horn | |
Also reorder the parameters of composeFileHashMap, placing the "return value" first. |