aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-08-04N64: Fix warningEugene Sandulenko
2016-08-04N64: Fix build adter WriteStream::pos() additionEugene Sandulenko
2016-08-04BACKENDS: Fix DC's OutVMSave to have pos()Alexander Tkachev
2016-08-04WAGE: Update saves formatAlexander Tkachev
Offset is added in the end of the file, so ScummVM would know where to look for description, version, thumbnail information.
2016-08-04COMMON: Update GZipWriteStream::pos()Alexander Tkachev
Though it seemed the _wrapped stream should return valid position, it was always 0. That's why I've added a _pos field, which is updated in write() and returned in pos().
2016-08-04COMMON: Add WriteStream::pos()Alexander Tkachev
It returns int32, because some complex streams are derived from both WriteStream and ReadStream, and in ReadStream pos() returns int32, because -1 means an error. I had to change MemoryStream's uint32 to int32, which is probably not so good.
2016-08-03TITANIC: Correct sound manager methods to return existing WaveFile classPaul Gilbert
2016-08-03TITANIC: Add CSound sound loading methodsPaul Gilbert
2016-08-03GRAPHICS: Fix MSVC project generationPaul Gilbert
2016-08-03MOHAWK: Load games from outside the options dialog loopThierry Crozat
Loading games from inside the dialog loop may cause cursor glitches. This commits applies the same fix to the MohawkOptionsDialog as the one that already existed for the global main menu. This finished to fix bug #7164.
2016-08-03GRAPHICS/WAGE: Made MacWindowManager font maping requiring font sizeEugene Sandulenko
2016-08-03WAGE/GRAPHICS: Move standard Mac font mapping to gui/Eugene Sandulenko
2016-08-03GRAPHICS: Fix warningsEugene Sandulenko
2016-08-03Merge pull request #796 from blorente/move-macguiEugene Sandulenko
GRAPHICS/WAGE: Extract Mac GUI system.
2016-08-02TITANIC: Add game state thunk methods to CGameObjectPaul Gilbert
2016-08-02TITANIC: Fix compiler warningsPaul Gilbert
2016-08-02TITANIC: Added CPETPosition enterViewMsgPaul Gilbert
2016-08-02TITANIC: Added CPETPosition leaveViewMsgPaul Gilbert
2016-08-02TITANIC: Further work on view and node positioningPaul Gilbert
2016-08-02TITANIC: Fleshing out cViewItem classPaul Gilbert
2016-08-02TITANIC: Fixes for CProximity setupPaul Gilbert
2016-08-02TITANIC: Add TTsentence support methodsPaul Gilbert
2016-08-02GRAPHICS: Add most of the documentation to MacWindowManagerBorja Lorente
2016-08-02GRAPHICS: Add macwindow documentationBorja Lorente
2016-08-02GRAPHICS: Add documentation to BaseMacWindowBorja Lorente
2016-08-02GRAPHICS: Add documentation to MacWindowBorderBorja Lorente
2016-08-02GRAPHICS: Add basic caching to 9patch colorsBorja Lorente
2016-08-02GRAPHICS: Remove unused variablesBorja Lorente
2016-08-02GRAPHICS: Fix indentationBorja Lorente
2016-08-02WAGE: Revert indentationBorja Lorente
2016-08-02GRAPHICS: Fix include path in macwindowborderBorja Lorente
2016-08-02GRAPHICS: Rename header guards in macguiBorja Lorente
2016-08-02GRAPHICS: Reorder modules to preserve alphabetical orderBorja Lorente
2016-08-02GRAPHICS: Fix spacing issues in MacWindowManagerBorja Lorente
2016-08-02GRAPHICS: Add missing file headerBorja Lorente
2016-08-02GRAPHICS: Fix style and spellingBorja Lorente
2016-08-02WAGE: Remove leftover filesBorja Lorente
2016-08-02GRAPHICS: Add custom border measuresBorja Lorente
2016-08-01TITANIC: Added TTsentence localWordPaul Gilbert
2016-08-01TITANIC: Fix compiler warningsPaul Gilbert
2016-08-01TITANIC: Added SuccUBusScript updateStatePaul Gilbert
2016-08-01TITANIC: Added MaitreDScript methodsPaul Gilbert
2016-08-01TITANIC: Fix Coverity warningsPaul Gilbert
2016-08-01TITANIC: Fix infinite recursion in CPetRoomsGlyphPaul Gilbert
2016-08-01TITANIC: Add MaitreDScript processPaul Gilbert
2016-08-01DEVTOOLS: Add sentence sentence list for MaitreD to create_titanicPaul Gilbert
2016-08-01TITANIC: Added SuccUBusScript methodsPaul Gilbert
2016-08-02Merge pull request #795 from fuzzie/snapEugene Sandulenko
POSIX: Add $SNAP to search path if available.
2016-08-02Merge pull request #797 from Mailaender/appdataEugene Sandulenko
DISTS: Added an appdata.xml file
2016-08-01SCI: Fix warningsEugene Sandulenko