aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-26CONFIGURE: Create port-specific platform for GCW0Eugene Sandulenko
2014-10-26BASE: Display virtual keyboard and keymapper in game optionsEugene Sandulenko
2014-10-26GCW0: Create target with unstripped binariesEugene Sandulenko
2014-10-26GCW0: Create log file at game launchEugene Sandulenko
2014-10-26BUILD: Install the theme-able SVG iconMatthias Mailänder
Add missing hicolor SVG icon to install. Retain older pixmaps xpm icon for now.
2014-10-26Merge pull request #524 from AReim1982/WII-1.7.0-Beta-2David Turner
WII: missing ASCII codes for some keys
2014-10-26GCW0: Enable analog joystick by defaultEugene Sandulenko
2014-10-26GCW0: Correct launch optionsEugene Sandulenko
2014-10-26GCW0: Further work on the portEugene Sandulenko
2014-10-26PRINCE: Fix another variable signEugene Sandulenko
2014-10-26PRINCE: Fix variable signEugene Sandulenko
2014-10-26PRINCE: Fix warningEugene Sandulenko
2014-10-25ZVISION: Fix memory leak (CID 1109659)Torbjörn Andersson
2014-10-25PRINCE: Fix potential out-of-bounds read (CID 1248502)Torbjörn Andersson
Since _opcodes[] has kNumOpcodes elements, kNumOpcodes itself is not a valid index.
2014-10-25PRINCE: Fix potential out-of-bounds reads (CID 1248500, 1248503)Torbjörn Andersson
Since heroSetTable[] is an array of int, use >= ARRAYSIZE() instead of > sizeof().
2014-10-25PRINCE: Fix potential out-of-bounds write (CID 1248504)Torbjörn Andersson
There are kMaxTexts text slots, so kMaxTexts itself is not valid.
2014-10-24GCW0: Initial code for GCW Zero portEugene Sandulenko
2014-10-23WII: missing ASCII codes for some keysAlexander Reim
2014-10-22MADS: Remove unused variablePaul Gilbert
2014-10-22MADS: Add md5 checks for the asound.00* sound driversPaul Gilbert
The implementation of the sound driver code relies on the data for each sound being at specific locations in the files, so this ensures that if any language version changes the sound files, we'll know about it
2014-10-19SCI: Add notesWillem Jan Palenstijn
2014-10-19GRAPHICS: Silence an MSVC warningFilippos Karapetis
2014-10-19SCI: Enable some menus in Jones after restoring (bugs #6537 and #6723)Filippos Karapetis
The code path that is supposed to enable these never gets called when restoring from the main menu, or from the ScummVM launcher. Since the logic on when and what to enable is quite complex, the easiest thing to do is enable these entries manually after a game is loaded.
2014-10-18MADS: Minor clean up of sprite set removalPaul Gilbert
2014-10-19GOB: Remove useless memcpy()Sven Hesse
Happened while removing Draw::_vgaSmallPalette in 0f9b1364c. Fixes Coverity issue #1230309.
2014-10-18SCI: Fix bug #6703: "SCI: QFG1 VGA - Can't CTRL+S to access statistics"Filippos Karapetis
This actually affected all Control+key combinations. A regression from 0f90b8eaad0335715d5f6aea6ede32ebbb746e25
2014-10-18MADS: Clear scene sprites and objects when showing a game menuFilippos Karapetis
This shows the game menu, albeit with the wrong palette
2014-10-18MADS: Implement the Rex Cancel button in the game options dialogFilippos Karapetis
The current options are now saved when the dialog opens, and are restored to their original values if the user cancels
2014-10-18MADS: Reset screen clip bounds before copying over a new screenFilippos Karapetis
This is needed for the in-game menu, where a dialog spawns another one
2014-10-18MADS: Remove deprecated code from AnimationView and a bunch of out-of-date TODOsPaul Gilbert
2014-10-18MADS: Only show Quotes main menu item after winning the gamePaul Gilbert
2014-10-18MADS: Hook up Rex game endings to show the correct animation and/or creditsPaul Gilbert
2014-10-18SCI: Hopefully fix bug #6718 in LSL6 PolishFilippos Karapetis
View flags are mainly used by LB2. The flag in the LSL6 view seems to be garbage, so we ignore it
2014-10-18SCI: Separate the rest of the detection-only functionsFilippos Karapetis
This should fix bug #6717 - "SCI fallback detection assert failure"
2014-10-18SCI: Rename the version of addAppropriateSources() used in detectionFilippos Karapetis
2014-10-18SCI: Fix some typos, and remove some redundant curly bracesFilippos Karapetis
2014-10-17TINSEL: Move object creation from constructor to run()Torbjörn Andersson
Moved the creation of _midiMusic, _pcmMusic, _sound and _bmv from the constructor to run(). It was reported on the forum that the MT-32 emulator didn't work for Discworld, and I'm speculating that this is because it was being initialized before the "extra path" had been added to the search path. It's likely that not all of these objects are needed for every version of the game. Fixing that is left as an exercise for someone more familiar with the different game versions than me.
2014-10-16MADS: Fix stopping digital audio, music, and palette cycling when animation endsPaul Gilbert
2014-10-16TSAGE: R2R - Remove useless includesStrangerke
2014-10-16TSAGE: Move Air Duct and Vampire lair mazes in separate source filesStrangerke
2014-10-15MADS: Save redundant reloads of digital audio when switching animationsPaul Gilbert
2014-10-15SCI: Simplify check for non-alphanumeric characters in the parserFilippos Karapetis
This is also for bug #6608. Many thanks to wjp for his help with this
2014-10-15SCI: Ignore most of the non-alphanumeric characters in the parserFilippos Karapetis
This is a more proper handling of non-alphanumeric characters (e.g. apostrophes) in SCI games with a parser - bug #6608
2014-10-15MADS: Move all the anim and text view code into a common classFilippos Karapetis
The animation and text players are more or less common among all MADS games
2014-10-15MADS: Initial implementation of sound driver handling for V2 gamesFilippos Karapetis
2014-10-15MADS: Bugfix for the text view debugger commandFilippos Karapetis
2014-10-14MADS: Correct the color for the top/bottom line bounding the cutscenePaul Gilbert
2014-10-14MADS: Fix clearing on-screen messages when the cutscene animation changesPaul Gilbert
2014-10-14MADS: Implement subtitles for animation cutscenesPaul Gilbert
2014-10-14MADS: Fix to exit game safely when sound driver hasn't been createdPaul Gilbert