Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-11-22 | AUDIO: Remove two extra commas. | Johannes Schickel | |
2012-11-22 | AUDIO: Disallow custom percussion instruments in MIDI->AdLib code. | Johannes Schickel | |
2012-11-22 | AUDIO: Only enable OPL3 code in MIDI->AdLib, when we have the DOSBox ↵ | Johannes Schickel | |
emulator builtin. | |||
2012-11-20 | AUDIO: Slight cleanup and typo fix in S&M OPL3 code. | Johannes Schickel | |
2012-11-15 | MT32: Make all constant tables in the MT32Emu namespace static | Filippos Karapetis | |
Added in munt commit d4f8ebf54be0a8255af08bb24f1962afa8378096 | |||
2012-11-15 | MT32: Update the MT32 emulator to the latest munt revision | Filippos Karapetis | |
Previous munt revision was 189f607c88e7404ad99abcf4b90f23b103003ed1 (Feb 09, 2012). Current munt revision is f969d2081d41b669c1bfebd0026b5419c09517ae (Nov 15, 2012) | |||
2012-11-11 | AUDIO: remove unused variables in FM-TOWNS imuse driver | athrxx | |
2012-10-01 | AUDIO: Add support for Sam&Max's OPL3 output in our SCUMM AdLib driver. | Johannes Schickel | |
This is an initial implementation and does not implement the differences in voice allocation. | |||
2012-10-01 | AUDIO: Add easy way to write to OPL3's secondary register set. | Johannes Schickel | |
2012-09-30 | AUDIO: Switch MidiDriver_ADLIB to new OPL API. | Johannes Schickel | |
2012-09-30 | AUDIO: Properly handle AdLibPercussionChannel::noteOff. | Johannes Schickel | |
2012-09-30 | AUDIO: Comment out unused member in AdLibPart. | Johannes Schickel | |
2012-09-30 | AUDIO: Give AdLibSetParam's members more descriptive names. | Johannes Schickel | |
2012-09-30 | AUDIO: Enforce method naming guidelines in adlib.cpp. | Johannes Schickel | |
2012-09-30 | AUDIO: Enforce variable naming guidelines in adlib.cpp. | Johannes Schickel | |
2012-09-30 | AUDIO: Fix formatting in adlib.cpp. | Johannes Schickel | |
Powered by astyle.cpp. | |||
2012-09-30 | AUDIO: Rename global variables in SCUMM AdLib code. | Johannes Schickel | |
This does give them slightly nicer names and also adds a "g_" prefix to them. | |||
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-05 | AUDIO: Silence MSVC warning about un-initialized newIncrement variable | Littleboy | |
2012-03-17 | ALL: Make use of defined() for the preprocessor consistent. | Johannes Schickel | |
This does not change the use of defined for some NDS source files, since they seem to be (based on?) third party code. | |||
2012-03-13 | JANITORIAL: Replace (x ? false : true) by !(x). | Christoph Mallon | |
2012-02-21 | COMMON: remove unnecessary commas | athrxx | |
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 | MT32: Replace OS X specific exp2f call with exp2. | Alyssa Milburn | |
Suggested by clone2727 to fix the build, since buildbot's ppc headers don't have exp2f. | |||
2012-02-10 | MT32: Turn off accurate WG as suggested by KingGuppy | Eugene Sandulenko | |
2012-02-09 | MT32: Fix warning | Willem Jan Palenstijn | |
The workaround for the unused parameter warning caused a warning: parameter 'patchNum' set but not used | |||
2012-02-09 | MT32: Hooked up ScummVM MIDI gain | Eugene Sandulenko | |
2012-02-09 | MT32: Update MT-32 emulator to latest Munt code | Eugene Sandulenko | |
Several changes against original code were made. They were intentionally kept to the minimum | |||
2011-11-26 | ALL: unrecognised -> unrecognized. | Johannes Schickel | |
2011-11-20 | AUDIO: Very small formatting fix. | Johannes Schickel | |
2011-11-03 | AUDIO: remove 2 superfluous lines in Kyra1/Kyra2/LoL FM-Towns/PC-98 sound driver | athrxx | |
2011-11-01 | FM-TOWNS AUDIO: make constructor of TownsAudioInterfaceInternal private | athrxx | |
2011-10-28 | AUDIO: Adapt include guard names to the "new" directory name. | Johannes Schickel | |
2011-10-28 | AUDIO: Slight adaptions of SID code to our guidelines. | Johannes Schickel | |
This only touches #include usages and the include guard of sid.h. | |||
2011-09-23 | AUDIO: Sync DOSBox OPL code a bit. | Johannes Schickel | |
This only touches a line which is not used in the current setup. | |||
2011-09-17 | SCUMM FM-TOWNS: fix invalid mem accesses | athrxx | |
- handle some invalid sound resources that come up when starting LOOM - fix typo in midi driver code (causing invalid mem reads) | |||
2011-08-12 | AUDIO: Replace macro in emumidi code with enum. | Johannes Schickel | |
2011-08-10 | CMS: Simplify code a tiny bit. | Johannes Schickel | |
2011-08-10 | CMS: Do proper clipping of the sound data on generation. | Johannes Schickel | |
This fixes some overflows/underflows which resulted in crackling. | |||
2011-08-07 | JANITORIAL: Remove trailing empty lines. | Christoph Mallon | |
2011-08-06 | OSYSTEM: extended installTimerProc() with timer ID parameter | Eugene Sandulenko | |
2011-07-10 | SCUMM: minor bug fix in FM-Towns midi driver | athrxx | |
2011-06-23 | AUDIO/BACKENDS/GRAPHICS: Add error checks after allocating memory with malloc | Julien | |
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-06 | GRAPHICS: Get rid of kSODFont (ScummFont) | Thierry Crozat | |
OSD is now using the kGUIFont instead. The main advantage is that the kGUIFont can be used for translated text while only ASCII characters were present in ScummFont. | |||
2011-06-06 | AUDIO: some more text tweaks | athrxx | |
2011-06-06 | AUDIO: Tweak warning text | Willem Jan Palenstijn | |
2011-06-05 | AUDIO: fix device detection (missing rom files for MT-32 emu) | athrxx | |
This is an attempt to fix the problem Max described in his devel mail. The presence of the rom files will now be checked in detectDevice(). In case of failure there will be fallback attempts. The user will get notified of the detection failure if he has expressly selected the device that failed. Please test with your platform / engine (with or without rom files). | |||
2011-06-03 | FM-TOWNS AUDIO: some cleanup in midi driver code | athrxx | |