Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-11-24 | AUDIO: Fix AIFF comment about supporting IMA ADPCM | Matthew Hoops | |
2012-11-24 | KYRA: fix bug #3589442 (LOL Floppy - No speech during intro) | athrxx | |
2012-11-24 | PEGASUS: Use the new VideoDecoder::setRate code | Matthew Hoops | |
The filling station now plays at the proper speed | |||
2012-11-24 | VIDEO: Add support for playing videos at a modified speed | Matthew Hoops | |
Currently this only works for positive (forward) playback, but will eventually work for negative (backward). | |||
2012-11-23 | COMPOSER: Fix order of directoryGlobs qualifiers. | D G Turner | |
Some compilers throw a warning on the "const static" ordering, so the more standard "static const" should be used instead. | |||
2012-11-23 | AUDIO: Fix spurious compiler warnings about use-before-set variable. | D G Turner | |
2012-11-23 | WII: Remove remaining signed-unsigned compiler warning. | D G Turner | |
2012-11-23 | N64: Remove remaining signed-unsigned compiler warning. | D G Turner | |
2012-11-23 | KYRA: Some slight cleanup. | Johannes Schickel | |
2012-11-23 | KYRA: Fix bug #3589441 "KYRA: LOL DOS is broken". | Johannes Schickel | |
In fact it affected all DOS versions of the game. This is a regression from 93e69aa4da0558b05fc235684355ed38eed9863d. | |||
2012-11-23 | KYRA: Remove unnecessary forward declaration. | Johannes Schickel | |
2012-11-23 | KYRA: Move SoundDigital declaration to its own header. | Johannes Schickel | |
2012-11-23 | KYRA: Rename kReadSaveHeaderError to ReadSaveHeaderError. | Johannes Schickel | |
2012-11-23 | KYRA: Get rid of pointless SoundDigital::init method. | Johannes Schickel | |
2012-11-23 | KYRA: Make Sound::hasSoundFile const again. | Johannes Schickel | |
2012-11-23 | KYRA: Properly mark digital sfx as sfx in HoF and LoL again. | Johannes Schickel | |
This is a regression from e016e7dfc2b1e3cdb39c01d81c5a34eee66a277b. | |||
2012-11-22 | Merge pull request #283 from lordhoto/scumm-opl3 | Johannes Schickel | |
SCUMM: Support OPL3 in Sam&Max | |||
2012-11-22 | TINSEL: Fix typo in comment | Torbjörn Andersson | |
2012-11-22 | TINSEL: Fix inventory scrollbar handle position | Torbjörn Andersson | |
The scrollbar handle was one pixel too far to the left, and the topmost position was off by one as well. I've verified this to the best of my ability. I've compared it visually in DOSBox (which is a bit tricky for Discworld 2, but I think it's right now), and against the initial Tinsel v1 source code that was added to ScummVM. I don't know what the initial Tinsel v2 source code looked like, though. | |||
2012-11-22 | TINSEL: Fix inventory scrolling | Torbjörn Andersson | |
Adjusted NM_SLIDE_INSET and NM_SLIDE_THICKNESS to make the inventory scrollbar work as it did before Tinsel v1 and v2 were combined. The scrollbar worked before, but you had to click a bit to the left of it to operate it. It's the only place in the code where these constants are used, so it should not break anything else. | |||
2012-11-21 | PEGASUS: Add a keymap | Matthew Hoops | |
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 | TONY: Fix compiler warnings about possible "used before set" variables. | D G Turner | |
Looking at this code and the code in clip2D, this shouldn't happen, but this will prevent any future issues. | |||
2012-11-20 | AUDIO: Slight cleanup and typo fix in S&M OPL3 code. | Johannes Schickel | |
2012-11-19 | PARALLACTION: Mask unused, but set variable warning, by debug(). | D G Turner | |
This variable is likely to be used in the future if the associated TODO is implemented, so this warning is inhibited by adding a debug() output statement. | |||
2012-11-19 | TOLTECS: Remove unused, but set, variable, start. | D G Turner | |
2012-11-19 | QUEEN: Fix compilation. | D G Turner | |
2012-11-19 | QUEEN: Remove unused, but set variable, personWalking from Talk::talk(). | D G Turner | |
2012-11-19 | N64: Fix remaining warnings associated with mouse cursor drawing. | D G Turner | |
2012-11-19 | KYRA: Make "const type *const" use consistent. | Johannes Schickel | |
I used this command for changing "const type * const" to "const type *const": git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/const \([a-zA-Z0-9_]*\) \* const/const \1 \*const/g' | |||
2012-11-19 | KYRA: Make more static data tables const. | Johannes Schickel | |
2012-11-19 | KYRA: Strip trailing whitespaces. | Johannes Schickel | |
2012-11-19 | KYRA: Some formatting fixes. | Johannes Schickel | |
Powered by astyle. | |||
2012-11-18 | N64: Fix compiler warnings associated with cursor size variables. | D G Turner | |
2012-11-18 | VIDEO: Fix SVQ1 videos to error out on B Frames. | D G Turner | |
2012-11-18 | VIDEO: Fix compiler warning in SVQ1 codec. | D G Turner | |
2012-11-18 | PEGASUS: Fix timer not resuming on the WSC catwalk when using the AI | Matthew Hoops | |
An original game bug | |||
2012-11-18 | PEGASUS: Don't constantly redraw the overview text frame | Matthew Hoops | |
2012-11-17 | PEGASUS: Fade out the main menu when using the quit button | Matthew Hoops | |
2012-11-18 | BUILD: Fix missing directory creation in aos4dist target. | D G Turner | |
2012-11-18 | OSX: Remove use of deprecated methods | Thierry Crozat | |
FSRef and FSPathMakeRef have been deprecated in OS X 10.8. So we use CFURLRef instead. | |||
2012-11-18 | OSX: Fix Sparkle compilation on older systems | Thierry Crozat | |
This patch was provided by fingolfin (see patch #3582260). It replaces use of methods introduced in MacOS X 10.4 with methods that exists since MacOS X 10.0. | |||
2012-11-18 | OSX: Add missing include for NSURL | Thierry Crozat | |
This fixes compilation on older systems (apparently on newer systems it was already included indirectly). | |||
2012-11-18 | OSX: Improve native OS X browser dialog | Max Horn | |
Signed-off-by: Thierry Crozat <criezy@scummvm.org> | |||
2012-11-18 | KYRA: (EOB) - implement simplified EGA dithering for EOB II | athrxx | |
2012-11-18 | KYRA: (EOB) - cleaning up CGA/EGA graphics code | athrxx | |
- fix some glitches in CGA rendering mode - revert most of 66da4777d476c6a9fc2a13351e3b30afc748fd94 (instead of having lots of EGA dithering routines throughout the whole EOB code we're going to implement some post-processing code in updateScreen()) | |||
2012-11-17 | BUILD: Fix aos4dist target when building outside source directory. | D G Turner | |
2012-11-16 | SCUMM: Fix the "drafts" debugger command for Mac Loom | Torbjörn Andersson | |
Mac Loom's drafts appear to be stored from variable 55 and upwards. I'm working under the assumption that there's either only one version of Loom for the Mac, or that they all behave the same. I could be wrong about that. |