Age | Commit message (Collapse) | Author | |
---|---|---|---|
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. | |||
2011-12-12 | AUDIO: Add endian FIXME to timdity code | Max Horn | |
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-05-04 | BACKENDS: Fix copy & paste mistakes in some comments | Max Horn | |
2011-04-28 | JANITORIAL: Reduce header dependencies in shared code | Ori Avtalion | |
Some backends may break as I only compiled SDL | |||
2011-03-29 | JANITORIAL: Remove/comment unused vars | dhewg | |
Found by GCC 4.6's -Wunused-but-set-variable | |||
2011-03-22 | AUDIO: Add pure virtual MidiDriver::isOpen() method | Max Horn | |
This in turn enables modifying MidiDriver_MPU401::close() to allow it to be called on a midi driver that has not yet been opened. The specific issue that triggered me to make these changes was a crash-upon-quit in HUGO, caused by it instantiating a midi driver, then encountering an error (missing hugo.dat) *before* having opened the new midi driver; the general cleanup code then tries to close the (not yet opened) midi driver -> kaboom Also fixed some engines which were leaking MidiDriver instances. | |||
2011-02-09 | MIDI: Really fix bug #3153076 (this time also for Timidity) | Max Horn | |
svn-id: r55857 | |||
2011-02-09 | AUDIO: Rename sound/ dir to audio/ | Max Horn | |
svn-id: r55850 | |||
2011-01-15 | MIDI: Fixed unnecessary casts of return values to void, reported in bug #3153076 | Filippos Karapetis | |
svn-id: r55248 | |||
2010-10-30 | ALL: Add code to help stop people from accidentally using "bad" APIs | Max Horn | |
A new header file common/forbidden.h is included by scummsys.h and it re-#defines numerous symbols like fopen(), fread(), system(), etc. with garbage, in order to provoke compile errors in any code using them. If a .cpp file really *must* use any of these (e.g. because it is a backend file), then these redefinitions can be disabled by #defining FORBIDDEN_SYMBOL_ALLOW_ALL as the first thing in the .cpp file. Whenever this is done, an explanatory comment should be added. Note that this system cannot catch all "bad" usages (notably the Lua code in the sword25 engine), as it can only work if scummsys.h is included. svn-id: r53961 | |||
2010-10-13 | SOUND: Allow TiMidity support to be disabled via configure. | Johannes Schickel | |
svn-id: r53395 | |||
2010-06-21 | Patch #1956501: "GUI/LAUNCHER: Midi device selection" | Max Horn | |
svn-id: r50128 | |||
2010-05-05 | Replace various strncpy usages by strlcpy. | Johannes Schickel | |
svn-id: r48955 | |||
2010-01-03 | Fixed a bunch of cppcheck warnings. Mostly about checking if a pointer is null | Torbjörn Andersson | |
before freeing it, which isn't necessary. svn-id: r46941 | |||
2009-12-09 | Remove the Audio::Mixer parameter from the midi/music plugins | Max Horn | |
svn-id: r46315 | |||
2009-07-04 | Add GCC_PRINTF parameter. | Johannes Schickel | |
svn-id: r42104 | |||
2009-06-28 | Silenced the reamining warnings reported in patch #2684986 (gcc warnings ↵ | Max Horn | |
with -DFORTIFY_SOURCE=2 -fstack-protector) svn-id: r41930 | |||
2009-05-13 | Silence another g++ 4.4 warning. | Johannes Schickel | |
svn-id: r40527 | |||
2009-02-02 | #define usleep on BeOS | Max Horn | |
svn-id: r36201 | |||
2008-11-30 | Fixed sysEx buffer sizes. | Johannes Schickel | |
svn-id: r35192 | |||
2008-11-30 | - Extended MidiDriver::sysEx to allow 264 byte sysEx messages | Johannes Schickel | |
- Updated all drivers to allow 264+2 byte sysEx messages - Implemented sysEx processing for MT-32 for Kyra1 and HoF. MT-32 should now be working properly. svn-id: r35180 | |||
2008-11-05 | Turned enum PluginError into Common::Error, which in the future is to be ↵ | Max Horn | |
used in more places. Help with this is highly welcome svn-id: r34906 | |||
2008-06-13 | Added initial interface to list music devices and their types | Jordi Vilalta Prat | |
svn-id: r32695 | |||
2008-06-13 | Renamed MIDI plugins to Music plugins | Jordi Vilalta Prat | |
svn-id: r32693 | |||
2008-05-14 | - Added more information (ID and capabilities) to the MIDI drivers | Jordi Vilalta Prat | |
- Added the MidiPlugin interface to the remaining MIDI drivers - Added an initial MidiManager to handle the MIDI plugins (just static plugins by now) svn-id: r32117 | |||
2008-05-14 | Moved midiplugin.h to sound/ since it will be used for more than just the ↵ | Jordi Vilalta Prat | |
native MIDI drivers. svn-id: r32097 | |||
2008-05-11 | Added the MidiPlugin interface (first step towards the MIDI plugins) | Jordi Vilalta Prat | |
svn-id: r31993 | |||
2008-01-27 | Removed trailing spaces. | Jordi Vilalta Prat | |
svn-id: r30664 | |||
2008-01-13 | WORKAROUND bug #1870304: Solaris does not provide INADDR_NONE | Max Horn | |
svn-id: r30467 | |||
2007-11-02 | Changed "if( ... )" to "if ( ... )" and "while( ... )" to "while ( ... )", and | Torbjörn Andersson | |
removed an unnecessary \n. svn-id: r29379 | |||
2007-11-02 | Patch #1815526: Add TiMidity++ MIDI server support | Max Horn | |
svn-id: r29377 |