Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-04-28 | KYRA: Fix compilation when LoL is disabled. | Johannes Schickel | |
2011-04-28 | KYRA: Clean up of header includes. | Johannes Schickel | |
2011-04-28 | JANITORIAL: Reduce header dependencies in shared code | Ori Avtalion | |
Some backends may break as I only compiled SDL | |||
2011-04-18 | COMMON: Rename Error to ErrorCode, introduce new Error class | Max Horn | |
2011-04-14 | KYRA: Enforce use of American English in comments. | Johannes Schickel | |
2011-04-12 | COMMON: Replace MKID_BE by MKTAG | Max 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. | |||
2011-04-11 | KYRA: Add some assertion to prevent out of bounds access. | Johannes Schickel | |
2011-04-11 | KYRA: Constify static data table in LoL code. | Johannes Schickel | |
2011-04-11 | KYRA: Get rid of non-const static variable in Kyra2 code. | Johannes Schickel | |
2011-04-11 | KYRA: Cleanup. | Johannes Schickel | |
2011-04-11 | KYRA: Get rid of non-const static variables in HoF. | Johannes Schickel | |
2011-04-09 | DEVTOOLS: Renamed 'tools' directory to 'devtools' | Max Horn | |
2011-04-07 | KYRA: Slight cleanup. | Johannes Schickel | |
This more or less silently fixes the silent music introduced with f19e201, by me setting volume to "true" instead of "255". Whoops. | |||
2011-04-07 | KYRA: Cleanup background music looping of Kyra3. | Johannes Schickel | |
2011-04-07 | KYRA: Cleanup static variable usage in LoK. | Johannes Schickel | |
2011-04-07 | KYRA: Slight cleanup. | Johannes Schickel | |
2011-03-29 | JANITORIAL: Remove/comment unused vars | dhewg | |
Found by GCC 4.6's -Wunused-but-set-variable | |||
2011-03-23 | AUDIO: Change several fake MidiDrivers to MidiDriver_BASE subclasses | Max Horn | |
Many engines follow the advice in audio/midiparser.h and create a "pseudo-MidiDriver" subclass. But MidiParser really only needs a tiny subset of the MidiDriver capabilities, namely those found in MidiDriver_BASE. So we try to subclass from that whenever possible; this allows us to remove many stub methods, and enables further future simplifications. | |||
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-20 | KYRA: Fix regression in Screen::setInterfacePalette. | Johannes Schickel | |
This fixes an out of bounds write introduced with 9216c7e. | |||
2011-02-19 | Merge branch 'osystem-palette' of https://github.com/lordhoto/scummvm into ↵ | Johannes Schickel | |
master Conflicts: backends/platform/android/android.cpp engines/sci/graphics/screen.cpp engines/sci/graphics/transitions.cpp | |||
2011-02-16 | KYRA: Set type for NULL MIDI driver to PC Speaker. | Johannes Schickel | |
This avoids a dialog about MT-32 to General MIDI conversion shown when running Kyrandia 1. Formerly the NULL MIDI output type was set to General MIDI, which caused the aforementioned dialog to show up, because Kyrandia 1 has no General MIDI tracks. | |||
2011-02-16 | KYRA/LOL: add comments for last commit | athrxx | |
2011-02-16 | KYRA/LOL: fixed hand item cursor bug | athrxx | |
This fixes a bug when loading savegames with different active hand items via GMM. The mouse cursor was not set to the active hand item in these cases. | |||
2011-02-14 | KYRA: Adapt to setPalette/grabPalette RGBA->RGB changes. | Johannes Schickel | |
2011-02-10 | KYRA: Rename KyraEngine_MR::runDialog to doDialog to avoid name clashes with ↵ | Johannes Schickel | |
Engine::runDialog. svn-id: r55864 | |||
2011-02-10 | KYRA: Remove superfluous const in type conversion. | Johannes Schickel | |
svn-id: r55863 | |||
2011-02-09 | AUDIO: Rename sound/ dir to audio/ | Max Horn | |
svn-id: r55850 | |||
2011-02-07 | ALL: Fix whitespaces / indention | Max Horn | |
svn-id: r55818 | |||
2011-02-07 | COMMON: OSystem now has a PaletteManager | Max Horn | |
svn-id: r55806 | |||
2011-01-29 | KYRA: Hopefully fix valgrind warnings in the HoF intro when text is disabled. | Johannes Schickel | |
svn-id: r55623 | |||
2011-01-29 | KYRA: Clean up main menu code in Kyra2/Kyra3. | Johannes Schickel | |
svn-id: r55620 | |||
2011-01-29 | KYRA: Fix Valgrind Uninitialized Memory Read at end of VQA Playback. | David Turner | |
svn-id: r55619 | |||
2011-01-29 | KYRA: Close Memory Leaks in Kyra 3 (Malcolm's Revenge) Menu. | David Turner | |
svn-id: r55618 | |||
2010-12-25 | KYRA FM-TOWNS: improved cd audio music fading | Florian Kagerer | |
svn-id: r55039 | |||
2010-12-07 | DEBUG: Let GUI::Debugger::preEnter and postEnter (un)pause the engine | Max Horn | |
svn-id: r54815 | |||
2010-12-01 | ALL: Fix a few typos | Jordi Vilalta Prat | |
svn-id: r54716 | |||
2010-11-19 | COMMON: Split common/stream.h into several headers | Max Horn | |
svn-id: r54385 | |||
2010-11-19 | ALL: Push down deps on stream.h from .h to .cpp files | Max Horn | |
svn-id: r54358 | |||
2010-11-17 | ENGINES: Change 'colour' to 'color' | Max Horn | |
Only changed this in engines where 'color' was/is already used almost exclusively svn-id: r54288 | |||
2010-11-08 | COMMON: Push #include audiocd.h in system.h out to .cpp files | Max Horn | |
svn-id: r54148 | |||
2010-11-08 | BACKENDS: Partial merge of gsoc2010-opengl: Audio CD changes only | Max Horn | |
This commit contains the AudioCDManager changes from the gsoc2010-opengl branch. The other changes in that branch are restricted to the backends directory only (plus configure). The Nintendo DS and Dreamcast ports still need to be ported over to the new Audio CD system, but that should be fairly easy to do. svn-id: r54147 | |||
2010-11-08 | LOL: fixed minor text displayer bug | Florian Kagerer | |
svn-id: r54132 | |||
2010-11-07 | COMMON: Rename and tweak MD5 functions | Max Horn | |
* names now comply to our naming conventions * the function computeStreamMD5AsString which computes the MD5 as a hex string now returns it as a Common::String * add doxygen comments svn-id: r54121 | |||
2010-11-07 | ENGINES: Unify code layout of all ADParams instances | Max Horn | |
svn-id: r54105 | |||
2010-11-01 | KYRA: Pause engine when the debugger is open. | Johannes Schickel | |
svn-id: r54032 | |||
2010-11-01 | GUI: Add GCC_PRINTF to GUI::Debugger::DebugPrintf & fix resulting warnings | Max Horn | |
svn-id: r54007 | |||
2010-11-01 | COMMON: Rename String::printf() to String::format() | Max Horn | |
This is a first step towards getting rid of all uses of regular printf, fprintf, vprintf, vfprintf, puts, fputs, etc. in our codebase. The name format() reflects the purpose of the function, and parallels String.format() in Java, boost::format, and others. svn-id: r54004 | |||
2010-10-31 | LOL: fixed bug #3099321 | Florian Kagerer | |
(Crash in Yvel tavern basement) svn-id: r53973 | |||
2010-10-30 | LOL: workaround for bug #3098935 | Florian Kagerer | |
(Vaelan's Cube can be duplicated at Scotia's Barrier) This is a bug in the game data of early unpatched floppy versions. This can also be fixed by applying the official patch (ftp://ftp.westwood.com/pub/lands1/updates/lolus123.exe). svn-id: r53954 |