aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/player_towns.cpp
AgeCommit message (Collapse)Author
2011-12-05SCUMM: fix minor bug in FM-TOWNS sound codeathrxx
(multi channel pcm sounds did not get restored correctly after loading a save file)
2011-09-17SCUMM FM-TOWNS: fix invalid mem accessesathrxx
- handle some invalid sound resources that come up when starting LOOM - fix typo in midi driver code (causing invalid mem reads)
2011-06-20ALL: Remove trailing whitespacesMax 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-05-29FM-TOWNS AUDIO: Unlock internal mutex before calling imuse timer proc.athrxx
2011-05-20FM-TOWNS AUDIO: fix thread lockups and cleanupathrxx
- fixed lockup situation in imuse destructor (only concerning the fm-towns driver) - fixed lockup situation when AudioCDManager functions get called (in both cases both the main thread and the mixer thread would get locked in different mutex belonging to the other thread)
2011-05-17FM-TOWNS AUDIO: Some midi code fixes and some renamingathrxx
2011-05-17FM-TOWNS AUDIO: Some renaming in the euphony driver codeathrxx
2011-05-17SCUMM: Adapt code to latest FM-TOWNS audio driver changesathrxx
2011-05-17FM-TOWNS AUDIO: Some more midi driver code for FM-TOWNS monkey2 and indy4athrxx
2011-05-12GIT: Clean up: Suppress SVN tags, now uselessstrangerke
2011-04-12COMMON: Replace MKID_BE by MKTAGMax Horn
MKID_BE relied on unspecified behavior of the C++ compiler, and as such was always a bit unsafe. The new MKTAG macro is slightly less elegant, but does no longer depend on the behavior of the compiler. Inspired by FFmpeg, which has an almost identical macro.
2010-10-10LOOM PC-Engine: fix regressionFlorian Kagerer
svn-id: r53113
2010-10-09SCUMM/FM-TOWNS: minor fix for sfx codeFlorian Kagerer
svn-id: r53103
2010-10-09SCUMM/FM-TOWNS: cleanup sfx codeFlorian Kagerer
svn-id: r53095
2010-10-08SCUMM/FM-TOWNS: fixed threading issue in sfx codeFlorian Kagerer
svn-id: r53074
2010-10-08SCUMM/FM-TOWNS: fixed possible invalid mem access in sfx codeFlorian Kagerer
svn-id: r53073
2010-10-07SCUMM/FM-TOWNS: minor change in sfx codeFlorian Kagerer
svn-id: r53061
2010-10-07SCUMM: Silenced signed/unsigned warnings, removed unused variableFilippos Karapetis
svn-id: r53055
2010-10-07SCUMM/FM-TOWNS: cleanupFlorian Kagerer
svn-id: r53053
2010-10-07SCUMM/FM-TOWNS: improved sfx support for indy4 and monkey2Florian Kagerer
svn-id: r53052
2010-10-05SCUMM/FM-TOWNS: disable new graphics code in DS portFlorian Kagerer
svn-id: r53033
2010-08-20SCUMM/TOWNS: fix minor bugsFlorian Kagerer
svn-id: r52234
2010-08-18SCUMM/FM-TOWNS: start rewriting audio codeFlorian Kagerer
- Start rewriting audio code for FM-TOWNS versions of Loom, Indy3 and Monkey Island 1 using the recently added code in towns_audio.cpp (Zak should work the same way, but I can't test, since I don't own that one). - All sound types (pcm, euphony and cd audio) now support volume and balance control (e.g. try walking into/out of the kitchen and opening/closing the door in the Scumm Bar in Monkey Island 1 or walking into/out of the circus tent). - Pcm sounds now support proper loop start/end and note offsets (e.g. try out the hammer sound in the forge in LOOM for example). - some other minor improvements - The FM-Towns versions of Indy 4 and Monkey Island 2 are not affected. I don't have Monkey Island 2, but I presume that it will work like Indy 4. Adding support for these will be a separate task, since they work quite differently. svn-id: r52198