Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-04-16 | HUGO: Remove debug message | strangerke | |
2011-04-16 | HUGO: Announce support in the NEWS file | strangerke | |
2011-04-16 | AUDIO: Cleanup sound type settings handling in MixerImpl. | Johannes Schickel | |
2011-04-16 | AUDIO: Renamed mute related functions in Mixer. | Johannes Schickel | |
This renames setMuteForSoundType to muteSoundType and getMuteForSoundType to isSoundTypeMuted. | |||
2011-04-16 | HUGO: Close prompt box dialog on Return key | Eugene Sandulenko | |
2011-04-16 | GUI: Let EditTextWidget notify when the editing is finished | Eugene Sandulenko | |
2011-04-16 | HUGO: cleanup | Eugene Sandulenko | |
2011-04-16 | HUGO: Fix crashes | Eugene Sandulenko | |
2011-04-16 | HUGO: Implement prompt text box | Eugene Sandulenko | |
Still it sometimes asserts with repeated dialog launches. | |||
2011-04-16 | TSAGE: Rename some objects in scene 60 and fix the master button behavior. | strangerke | |
This fix the blocking problem in scene 60. | |||
2011-04-15 | TSAGE: Fix several problems in scene 40, including the blocking one (killing ↵ | strangerke | |
the assassin) | |||
2011-04-15 | TSAGE: Cleanup. For coding consistency, remove default parameters when ↵ | strangerke | |
calling startSound() in scene groups 8 and 10 | |||
2011-04-15 | TSAGE: Fix several problems in scene 20. That fixes the intro and probably ↵ | strangerke | |
the evasion. Also add some comments in scene postInit in order to clarify the different actions available | |||
2011-04-15 | GROOVIE: Implement resource search-by-name for v2 games | Scott Thomas | |
2011-04-15 | GROOVIE: Use uint32 when searching for a video id by name | Scott Thomas | |
This brings ResMan::getRef into line with the rest of the engine. | |||
2011-04-15 | CONFIGURE: Explain more about --enable-all-engines. | Alyssa Milburn | |
2011-04-15 | TSAGE: Changed palette code back to using a byte array | Paul Gilbert | |
2011-04-15 | TSAGE: Scene40: The hero may now use his stunner on the assassin. Scene ↵ | strangerke | |
still broken. Also move some display() to display2() for consistency with the rest of the scenes in group1 | |||
2011-04-15 | SCI: Some initial work on supporting patch.005 in KQ1 Amiga | md5 | |
2011-04-15 | SCI: Silenced the warning for kMacPlatform(1) | md5 | |
This warning produces a lot of spam in the console (e.g. it pops up whenever the icon bar is opened in Dr. Brain Mac), thus it has been silenced | |||
2011-04-14 | AUDIO: Name the ADPCM status struct. | Alyssa Milburn | |
2011-04-15 | SWORD25: Removed the duplicate header files inside the pluto/pdep directory | md5 | |
2011-04-15 | SWORD25: Removed several unused files from the pluto directory | md5 | |
2011-04-14 | SWORD25: Silly whitespace fix. | Alyssa Milburn | |
2011-04-14 | GRAPHICS: Tidy up 4bpp handling a little. | Alyssa Milburn | |
2011-04-14 | SWORD25: Simplify text rendering code slightly. | Alyssa Milburn | |
2011-04-14 | GRAPHICS: Handle 4bpp paletted PNG files. | Alyssa Milburn | |
2011-04-14 | SWORD25: Fix rendering on big-endian. | Alyssa Milburn | |
2011-04-14 | SWORD25: Always create the MoviePlayer, even without USE_THEORADEC. | Alyssa Milburn | |
2011-04-14 | GRAPHICS: Replace PNG_HEADER macro with MKTAG | Alyssa Milburn | |
2011-04-14 | AUDIO: Fix a typo | Matthew Hoops | |
2011-04-14 | ALL: centerd -> centered | Max Horn | |
2011-04-14 | ALL: centre -> center | Max Horn | |
2011-04-14 | ALL: colour -> color | Max Horn | |
2011-04-14 | KYRA: Enforce use of American English in comments. | Johannes Schickel | |
2011-04-14 | TSAGE: Added replacement hierarchy for palette modifier classes that better ↵ | Paul Gilbert | |
matches the original | |||
2011-04-14 | TSAGE: Big Endian fix | Joost Peters | |
2011-04-14 | CREDITS: Added credits for TsAGE | Paul Gilbert | |
2011-04-14 | CREDITS: Added TsAGE engine credits | Paul Gilbert | |
2011-04-14 | SCUMM: Typo | Max Horn | |
2011-04-14 | TINSEL: Removed an unused global variable | md5 | |
2011-04-13 | DRACI: Adapt to new muting style. | Johannes Schickel | |
2011-04-13 | TINSEL: Clean up code a bit, since we now handle digital audio muting ↵ | Johannes Schickel | |
differently. | |||
2011-04-13 | ENGINES: Make Engine::syncSoundSettings use the Mixer's mute flag directly. | Johannes Schickel | |
This fixes an annoying behavior in the Sword2 option's dialog, which set all sound type volumes to 0, in case it was opened when the user used the global mute setting. | |||
2011-04-13 | AUDIO: Add per sound type mute flag setting to Mixer(Impl). | Johannes Schickel | |
This also adapts our default implementation MixerImpl to handle the newly added flags properly. Now we do not need to set the sound volume for all types to 0, in case we want to mute them, but instead just set the mute flag for all types to true. This allows engines to be a bit more agonstic about mute support, when it comes to volume options etc. since they can just setup any volume they like, but are still muted (and thus will not break muting anymore). MIDI sound is of course not affected by this. | |||
2011-04-13 | TSAGE: Silence uninitialized variable usage warning. | Johannes Schickel | |
Instead of passing an uninitialized dummy va_list to Action::attached we just pass the va parameter from SequenceManager::attached to it now, since that parameter is not used in Action::attached, it is safe to do that. | |||
2011-04-13 | TSAGE: Replace the recently added error() by a warning(), allowing to play ↵ | strangerke | |
the CD version | |||
2011-04-13 | TSAGE: Suppress some dead code, rename a variable (thanks fuzzie for ↵ | strangerke | |
pointing that) | |||
2011-04-13 | TSAGE: Always initialise the event in getEvent() | eriktorbjorn | |
This fixes Valgrind warnings when getEvent() is called when there are no pending events at all. | |||
2011-04-13 | TSAGE: Move two functions from .h to .cpp (thanks fuzzie for reporting that) | strangerke | |