Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-03 | WINTERMUTE: Update full screen on ScreenChanged | Willem Jan Palenstijn | |
This fixes the screen not updating after e.g., scaler changes. Bug #3594245. | |||
2013-10-03 | WINTERMUTE: Add missing break | Willem Jan Palenstijn | |
Confirmed by Mnemonic. | |||
2013-10-03 | AVALANCHE: Set some variables private in Menu | Strangerke | |
2013-10-03 | AVALANCHE: Use Doxygen comments in Graphics | Strangerke | |
2013-10-03 | SCUMM: Fix unused variable warnings | Rodrigo Rebello | |
2013-10-02 | TSAGE: R2R bugfix for using the console in the spare bedrooms | Paul Gilbert | |
2013-10-02 | TSAGE: Cleanup of R2R Lift scene | Paul Gilbert | |
2013-10-02 | AVALANCHE: Make _surface private | Strangerke | |
2013-10-02 | Merge pull request #404 from rrebello/tsage_fix | Strangerke | |
TSAGE: Fix uninitialized variable. | |||
2013-10-02 | TSAGE: Fix uninitialized variable. | Rodrigo Rebello | |
This was caused by commit 81a2892229a053bb9c76dea4dbfb63ca13164946. | |||
2013-10-02 | AVALANCHE: Use Doxygen comments in Dialogs, set private some members | Strangerke | |
2013-10-02 | FULLPIPE: Finish MGM::rebuildTables() | Eugene Sandulenko | |
2013-10-02 | FULLPIPE: Started implementing MGM::rebuildTables() | Eugene Sandulenko | |
2013-10-02 | FULLPIPE: Implement MGM::clear() | Eugene Sandulenko | |
2013-10-02 | FULLPIPE: Implement MGM::getItemIndexById() | Eugene Sandulenko | |
2013-10-02 | FULLPIPE: Implement MGM::addItem() | Eugene Sandulenko | |
2013-10-02 | ZVISION: Fix signed/unsigned mismatch | RichieSams | |
2013-10-02 | ZVISION: Standardize includes order and format | RichieSams | |
Format is: common/scummsys.h (Only if a .cpp file) header file for this file (Only if a .cpp file) zengine includes other includes, grouped by module | |||
2013-10-02 | ZVISION: Rename zvision.h inclusion guard to be consistent with the other files | RichieSams | |
2013-10-02 | ZVISION: Fix space formatting | RichieSams | |
2013-10-02 | ZVISION: Move two lookup tables inside the RawZorkStream class | RichieSams | |
Instead of being global variables. | |||
2013-10-02 | ZVISION: Remove unnesessary operator overload | RichieSams | |
2013-10-02 | ZVISION: Update removeDuplicateEntries to preserve order | RichieSams | |
The new algorithm is potentially slower, but it doesn't need to use sort. Speed shouldn't be a problem because the function isn't used that often and in each case the size of the container is small. | |||
2013-10-02 | ZVISION: Convert _timeLeft to a signed int | RichieSams | |
This allows time decrementing to go negative instead of wrapping to UINT_MAX. Which makes comparisons easier. | |||
2013-10-02 | ZVISION: Update warning message to correspond to the behavior | RichieSams | |
2013-10-02 | ZVISION: Remove global const variable | RichieSams | |
Replace with ColorMasks | |||
2013-10-02 | ZVISION: Fix spacing | RichieSams | |
2013-10-02 | ZVISION: Convert _completeFrames to an Array | RichieSams | |
2013-10-02 | ZVISION: Remove global const variables | RichieSams | |
Instead, use ColorMasks | |||
2013-10-02 | ZVISION: Convert all for-loops to use pre-increment instead of post-increment | RichieSams | |
2013-10-02 | ZVISION: Replace all occurances of (*iter). with iter-> | RichieSams | |
2013-10-02 | ZVISION: Add newline to end of module.mk | RichieSams | |
2013-10-02 | ZVISION: Fix curly braces formatting | RichieSams | |
2013-10-02 | ZVISION: Create file on the heap to prevent memory scope problems | RichieSams | |
2013-10-02 | ZVISION: Move bit flag to an enum for clarity | RichieSams | |
2013-10-02 | ZVISION: Add debug levels | RichieSams | |
2013-10-02 | ZVISION: Clean up zvision.h | RichieSams | |
2013-10-02 | ZVISION: Break comment into multiple lines for readability | RichieSams | |
2013-10-02 | ZVISION: Clean up the ZVision constructor | RichieSams | |
2013-10-02 | ZVISION: Move creation of the managers to ZVision::initialize() | RichieSams | |
In order to make the ZVision constructor as lightweight as possible | |||
2013-10-02 | ZVISION: Fix debug typo copy-paste error | RichieSams | |
2013-10-02 | ZVISION: Add newline at end of file | RichieSams | |
2013-10-02 | ZVISION: Remove empty file | RichieSams | |
2013-10-02 | SCI: Make a note about pic 390 in the blacklisted SQ4CD NRS patch 1.2 | Filippos Karapetis | |
2013-10-02 | SCI: Blacklist the SQ4CD 1.2 NRS patch | Filippos Karapetis | |
In essence, this "patch" includes a mixture the CD and floppy versions (the whole game), without the speech file | |||
2013-10-02 | WINTERMUTE: Remove unused _drawNum | Willem Jan Palenstijn | |
2013-10-02 | SAGA: Clean up variable scope | Willem Jan Palenstijn | |
2013-10-02 | Merge pull request #403 from rrebello/saga_cppcheck_fix | Filippos Karapetis | |
SAGA: Silent Cppcheck warning in Sprite::loadList(). | |||
2013-10-02 | WINTERMUTE: Fix regression with _skipThisFrame | Willem Jan Palenstijn | |
This broke loading in Broken Circle demo. We now reset the queue state when skipping a frame, and re-use lastFrameIter instead of keeping track of lastAddedTicket separately. | |||
2013-10-02 | SAGA: Silent Cppcheck warning in Sprite::loadList(). | Rodrigo Rebello | |