Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-06-25 | AUDIO: some fixes in the audio device code (no sound option, new GUIO flags) | Florian Kagerer | |
svn-id: r50281 | |||
2010-06-22 | GUI/LAUNCHER: This should fix the regression concerning pc speaker / pcjr ↵ | Florian Kagerer | |
support caused by patch #1956501 svn-id: r50145 | |||
2010-06-21 | Patch #1956501: "GUI/LAUNCHER: Midi device selection" | Max Horn | |
svn-id: r50128 | |||
2010-06-08 | Modification to remove false positive "Possible divide by zero" warnings ↵ | David Turner | |
given by cppcheck-1.43. These are incorrect as '/' operator has precedence over >>, but this does improve readability anyway. This bug in cppcheck has already been corrected: http://sourceforge.net/apps/trac/cppcheck/ticket/1714 svn-id: r49517 | |||
2010-05-05 | Replace various strncpy usages by strlcpy. | Johannes Schickel | |
svn-id: r48955 | |||
2010-04-20 | Fix the MT32 gfx output for 16bit compatiblity, cleanup, get rid of ↵ | Andre Heider | |
unnecessary buffers. svn-id: r48753 | |||
2010-04-17 | Fixing some warnings (with gcc 3.3.6) | Max Horn | |
svn-id: r48694 | |||
2010-04-12 | AUDIO: Rename Mixer::playInputStream to playStream | Max Horn | |
svn-id: r48637 | |||
2010-04-09 | Add missing cases to switch statements, remove whitespace | Ori Avtalion | |
svn-id: r48604 | |||
2010-03-18 | COMMON: Move Common::RandomSource to common/random.* | Max Horn | |
svn-id: r48279 | |||
2010-03-12 | This hopefully fixes building on win64. | Johannes Schickel | |
svn-id: r48245 | |||
2010-03-09 | Initialise 'releaseAdd' to avoid a Valgrind warning in Write20() when the | Torbjörn Andersson | |
emulator is initialised. svn-id: r48214 | |||
2010-03-08 | Add a slight comment when the DBOPL sources where synched with DOSBox. | Johannes Schickel | |
svn-id: r48182 | |||
2010-03-08 | Use memset instead of a custom loop for zeroing the sample buffer. | Johannes Schickel | |
svn-id: r48181 | |||
2010-03-08 | Cleanup. | Johannes Schickel | |
svn-id: r48180 | |||
2010-03-08 | Switch to the other DOSBox OPL emulator as suggested by the DOSBox developers. | Johannes Schickel | |
svn-id: r48179 | |||
2010-02-26 | SID: Adding DISABLE_SID option, as SID player embiggens binary by a large ↵ | Neil Millstone | |
amount. This is a problem for the DS port. svn-id: r48137 | |||
2010-01-25 | - Remove "(experimental)" mark from DOSBox OPL emulator description in GUI | Johannes Schickel | |
- Merge in some small OPL emulator changes from DOSBox's trunk svn-id: r47546 | |||
2010-01-25 | Strip trailing spaces/tabs. | Johannes Schickel | |
svn-id: r47541 | |||
2010-01-25 | Replace some more Adlib uses by AdLib. | Johannes Schickel | |
svn-id: r47530 | |||
2010-01-12 | Rename all "Adlib" uses to "AdLib" to match the real name of the sound card ↵ | Johannes Schickel | |
/ company. Check this for reference: http://en.wikipedia.org/wiki/Ad_Lib,_Inc. http://www.crossfire-designs.de/images/articles/soundcards/adlib.jpg (note the upper left of the card) This commit does not touch "adlib" and "ADLIB" uses! Also it does not update all the SCUMM detection entries, which still use "Adlib". svn-id: r47279 | |||
2010-01-08 | Use DisposeAfterUse::Flag | Willem Jan Palenstijn | |
svn-id: r47187 | |||
2010-01-08 | Switch Mixer::playInputStream to use DisposeAfterUse::Flag | Max Horn | |
svn-id: r47182 | |||
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-30 | Add Nintendo 64 port to trunk. | Fabio Battaglia | |
svn-id: r46773 | |||
2009-12-09 | Typo... | Johannes Schickel | |
svn-id: r46319 | |||
2009-12-09 | This is hopefully fixing compilation of the fluidsynth code. | Johannes Schickel | |
svn-id: r46318 | |||
2009-12-09 | Remove the Audio::Mixer parameter from the midi/music plugins | Max Horn | |
svn-id: r46315 | |||
2009-11-26 | Fix warnings. | Johannes Schickel | |
svn-id: r46145 | |||
2009-11-26 | Add patch #2839048 - MM C64 sound/music player, with minor changes. | Travis Howell | |
svn-id: r46143 | |||
2009-10-04 | Change a couple places from 'end of namespace' to 'End of namespace', for ↵ | Max Horn | |
consistency svn-id: r44634 | |||
2009-09-30 | Fix code formatting (esp. 'if(' -> 'if (' etc., but also indention and other ↵ | Max Horn | |
things) svn-id: r44495 | |||
2009-09-23 | Got rid of Common::File::addDefaultDirectory, instead implemented the ↵ | Johannes Schickel | |
solution proposed in "Case agnostic handling for directories (and files)" on -devel. svn-id: r44266 | |||
2009-09-14 | Wording. | Johannes Schickel | |
svn-id: r44086 | |||
2009-09-14 | Use struct packing for AdLib instruments like the SCUMM engine does. (And a ↵ | Johannes Schickel | |
comment about this change, which might be rather paranoia than having a real effect) svn-id: r44085 | |||
2009-07-29 | Fix typo, which made our "floorf" macro use "floorf" instead of "floor" on ↵ | Johannes Schickel | |
systems without "floorf". svn-id: r42904 | |||
2009-07-01 | - Added GCC_PRINTF attribute to several funcs where it makes sense | Max Horn | |
- change some constants from double to float, to avoid "loss of precision due to implicit conversion" warnings - removed duplicate prototypes for some funcs - fixed some "increases required alignment of target type" warnings svn-id: r42009 | |||
2009-05-31 | The error() and warning() functions add ! and newline automatically. (I didn't | Torbjörn Andersson | |
look at debug() and debugC(), since I'm really bored with this now. :-) svn-id: r41061 | |||
2009-05-29 | Double volume of DOSBox' OPL emulator, like DOSBox does too. | Johannes Schickel | |
svn-id: r41014 | |||
2009-05-27 | Add include guard. | Johannes Schickel | |
svn-id: r40932 | |||
2009-05-24 | Strip trailing whitespaces in the whole code base. | Johannes Schickel | |
svn-id: r40867 | |||
2009-05-22 | Fixed a warning: printf("%f") should take a double, not a float. | Marcus Comstedt | |
svn-id: r40785 | |||
2009-05-19 | COMMON: Removed Stream::ioFailed() and clearIOFailed(), as they are ↵ | Max Horn | |
deprecated; however, retained ioFailed in SeekableReadStream and File for now (so for now this mainly affects WriteStream subclasses) svn-id: r40725 | |||
2009-05-13 | Make g++ 4.4 happy (warning about out of bounds access). | Johannes Schickel | |
svn-id: r40526 | |||
2009-05-12 | - Add support for selecting the OPL emulator being used (config entry: ↵ | Johannes Schickel | |
"opl_driver") - Make MAME FM OPL the default emulator again - Add GUI support for selecting the active OPL emulator - Update themes svn-id: r40496 | |||
2009-05-06 | For the time being rename opl.h to opl_inc.h and opl.cpp to opl_impl.h, so ↵ | Johannes Schickel | |
MSVC does not try to compile the former opl.cpp. (Needs cleanup in the future anyway...) svn-id: r40365 | |||
2009-05-06 | Another attempt at fixing MSVC compiliation. (someone test this please ;-) | Johannes Schickel | |
svn-id: r40364 | |||
2009-05-06 | Don't include headers inside namespace scopes. This should fix compilation ↵ | Johannes Schickel | |
on NDS at least. svn-id: r40360 | |||
2009-05-06 | Added a reference to scummsys.h to fix compilation errors | Paul Gilbert | |
svn-id: r40351 | |||
2009-05-06 | Fix feedback/algorithm register write bugs in Dual OPL2 mode. | Johannes Schickel | |
svn-id: r40342 |