Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-01-15 | Merge pull request #649 from csnover/sci32-kPalette | Filippos Karapetis | |
SCI32: kPalVary, kPalette fade support, kPalette findColor support, improvements to game time management | |||
2016-01-14 | SCI: Minor clean-ups to comments and null pointer values | Colin Snover | |
2016-01-14 | SCI: Implement SCI32 kPalette findColor and matchColor | Colin Snover | |
It seems that findColor is used only by kPalette, and matchColor is used only by Remap. | |||
2016-01-14 | SCI: fix kernelCoordinateToPriority | Martin Kiewitz | |
do not check _priorityTop. Sierra never did it (I checked all sorts of SCI versions, kq4 early, kq5, kq6, etc.) and checking it will cause at least a priority issue in lsl2 in room 54 (airplane that is taking off will be drawn using priority 1 instead of 0) | |||
2016-01-14 | SCI: Use tick-based timing more consistently | Colin Snover | |
This means tick-based times are saved to save games, as in SCI32 engine, instead of seconds, which are not accurate enough. It also means places in SCI engine that need to access game ticks should do so through g_sci instead of g_system or g_engine. | |||
2016-01-14 | SCI: Implement SCI32 kPalVary and kPalette setFade | Colin Snover | |
This also fixes kPalCycle signatures to be more accurate. | |||
2016-01-14 | SCI: Add kPalMorph stub | Colin Snover | |
2016-01-14 | SCI: Fix bad spacing in kernel tables | Colin Snover | |
2016-01-14 | LAB: Remove superfluous calls to updateEvents() | Filippos Karapetis | |
These are leftovers, as updateEvents() was called to fill in the music buffer | |||
2016-01-14 | LAB: Better separation of the event and interface code | Filippos Karapetis | |
2016-01-14 | LAB: Clean up the trial warning handling code | Filippos Karapetis | |
2016-01-14 | LAB: Allow the game to be launched from the GAME folder | Filippos Karapetis | |
The FONTS folder is pretty much useless, so if a user points ScummVM to the GAME folder, handle the game files properly | |||
2016-01-14 | LAB: Read the header of DIFF files when opening them | Filippos Karapetis | |
2016-01-14 | LAB: Call checkRoomMusic() when changing a room | Filippos Karapetis | |
2016-01-14 | LAB: Use the sample speed value instead of a define for game music | Filippos Karapetis | |
2016-01-14 | LAB: Clean up the event loops of special game screens | Filippos Karapetis | |
2016-01-14 | LAB: Move frame waiting outside setAmigaPal() | Filippos Karapetis | |
2016-01-14 | LAB: Fix accidental change to code style | Filippos Karapetis | |
2016-01-14 | LAB: Hide the mouse cursor while fading when closing the map | Filippos Karapetis | |
2016-01-14 | LAB: Properly update the screen in monitors | Filippos Karapetis | |
2016-01-14 | LAB: Rename doCloseup() to reflect its actual purpose | Filippos Karapetis | |
2016-01-14 | LAB: Get rid of setDirection() | Filippos Karapetis | |
A leftover from code restructuring | |||
2016-01-14 | LAB: Rename the members of the CrumbData struct | Filippos Karapetis | |
This helps to distinguish them from the LabEngine variables | |||
2016-01-14 | LAB: Cleanup and reorder the music code | Filippos Karapetis | |
2016-01-14 | LAB: Move music reset code into a separate function | Filippos Karapetis | |
2016-01-14 | LAB: The parameter of doMap() isn't needed | Filippos Karapetis | |
2016-01-14 | SCUMM: Fix Russian Zak | Eugene Sandulenko | |
2016-01-13 | MOHAWK: Fix the getter for Channelwood's var 32 | Bastien Bouclet | |
2016-01-13 | MOHAWK: Correct the submitter of the Italian version of Myst | Filippos Karapetis | |
A copy a paste error | |||
2016-01-13 | MOHAWK: Add detection for the Italian version of Myst (bug #6895) | Filippos Karapetis | |
2016-01-13 | SCUMM: Move Russian Dig version description to the generated field | Eugene Sandulenko | |
2016-01-13 | SCUMM: Add detection for Russian Dig with subtitles | Eugene Sandulenko | |
2016-01-12 | NEVERHOOD: Fix another crash in Russian version | Eugene Sandulenko | |
2016-01-12 | SCUMM: Added detection for Russian Zak | Eugene Sandulenko | |
2016-01-12 | MOHAWK: Added detection for Russian Riven | Eugene Sandulenko | |
2016-01-12 | LURE: Add support for Russian version | Eugene Sandulenko | |
2016-01-12 | MOHAWK: Fix incorrect condition in Myst's sound block opcode | Bastien Bouclet | |
2016-01-12 | VOYEUR: change the type of the variable in a for loop | Strangerke | |
2016-01-12 | VOYEUR: Fix bitwise comparison, make more use of DISPFLAG enum | Strangerke | |
2016-01-12 | VOYEUR: Replace a check on a value by the use of an enum | Strangerke | |
2016-01-12 | VOYEUR: Fix formatting in sound.cpp. | Johannes Schickel | |
2016-01-12 | VOYEUR: Reduce variable scope, fix typo in comment | Strangerke | |
2016-01-12 | VOYEUR: Add a safeguard in getVOCFileName | Strangerke | |
2016-01-12 | MOHAWK: Add a comment about suspicious dead code in o_changeBackgroundSound | Strangerke | |
2016-01-11 | SHERLOCK: Remove empty destructor for WidgetFiles. | Johannes Schickel | |
WidgetBase already has a virtual destructor, thus there is no need to make WidgetFiles have an empty virtual destructor around. This also prevents g++ for Dreamcast from failing due to an internal compiler error. | |||
2016-01-11 | AVALANCE: Fix out of bounds array access. | Johannes Schickel | |
Thanks to uruk for checking on this. | |||
2016-01-11 | MADS: Rename "interface" variable to "idx". | Johannes Schickel | |
interface is #define'd on WinCE and breaks compilation. We might want to undefine it in the future to prevent these pitfalls. | |||
2016-01-11 | MADS: Check 'dialog' earlier to avoid untested null dereference | Strangerke | |
2016-01-11 | MADS: dragonsphere - Remove dead code in Scene102::step() | Strangerke | |
2016-01-11 | MADS: Initialize some variables in player code | Strangerke | |