Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-05-30 | PARALLACTION: More string safety | Eugene Sandulenko | |
2016-05-30 | SCUMM HE: Moonbase FOW rendering fixes | Eugene Sandulenko | |
2016-05-30 | SCI32: Really guard against null pointer dereference in calcLists | Colin Snover | |
CID 1356125. | |||
2016-05-30 | GNAP: Remove obsolete comment | Strangerke | |
2016-05-30 | MOHAWK: Initialize some variables | Strangerke | |
2016-05-30 | GNAP: Make two variables local to Scene52::run() | Strangerke | |
2016-05-30 | GNAP: Initialize two more variables | Strangerke | |
2016-05-30 | GNAP: Remove duplicate code | Strangerke | |
2016-05-30 | GNAP: Make 2 variables local to setDeviceHotspot | Strangerke | |
2016-05-30 | GNAp: Remove an unused variable | Strangerke | |
2016-05-30 | GNAP: Initialize some unitialized variables in GnapEngine | Strangerke | |
2016-05-30 | GNAP: Fix corrupted savegame title in GUI | sylvaintv | |
2016-05-29 | GNAP: Fix waitForUpdate behavior | sylvaintv | |
2016-05-29 | SHERLOCK: Silence very noisy GCC warning | Torbjörn Andersson | |
Since 'w' and 'h' are members of ManagedSurface, using them as input parameters to a method caused GCC to warn about them being shadowed. For just about every file in the Sherlock engine... | |||
2016-05-29 | Merge pull request #751 from einstein95/patch-1 | Filippos Karapetis | |
NEVERHOOD: Add earlier English demo of Neverhood | |||
2016-05-29 | Merge pull request #764 from salty-horse/agi_audio | Eugene Sandulenko | |
AGI: Reduce audio header dependencies | |||
2016-05-29 | Merge pull request #767 from raziel-/patch-1 | Eugene Sandulenko | |
GUI: Make (C) sign consistent in all engines | |||
2016-05-29 | SCUMM HE: Explicit type conversion | Eugene Sandulenko | |
2016-05-29 | SCUMM HE: Fix warning | Eugene Sandulenko | |
2016-05-29 | Fix Wintermute copyright sign | Hubert Maier | |
2016-05-29 | Fix Voyeur copyright sign | Hubert Maier | |
2016-05-29 | Fix TsAGE copyright sign | Hubert Maier | |
2016-05-29 | Fix MADS copyright sign | Hubert Maier | |
2016-05-29 | Fix LAB copyright sign | Hubert Maier | |
2016-05-29 | Fix Hopkins copyright sign | Hubert Maier | |
2016-05-29 | Fix CGE2 copyright sign | Hubert Maier | |
2016-05-29 | Fix CGE copyright sign | Hubert Maier | |
2016-05-29 | GUI: Make copyright "sign" consistent | Hubert Maier | |
In the About dialog the copyright "sign" (C) is lower case (c) in nine engines. Making them consistent by using (C) on all engines | |||
2016-05-28 | SCI32: Remove invalid TODO about CLUT for 16-bit graphics | Colin Snover | |
The CLUT for 16-bit graphics is not saved in SSCI (nor is it normally even part of the palette manager). | |||
2016-05-28 | GNAP: Remove duplicate code in screenEffect | Strangerke | |
2016-05-28 | SCI: Remove warning in kDisposeScript | Colin Snover | |
The two-argument implementation is correct and works properly. | |||
2016-05-28 | SCI32: Provide default value for vmap minDiffIndex | Colin Snover | |
SSCI did not initialise minDiffIndex and would always flow into the condition that sets it, but some compilers complain that the value may be used uninitialised, so we will just set it to map back to its original palette index by default. | |||
2016-05-28 | SCI32: Simplify default text width equation | Colin Snover | |
2016-05-28 | SHERLOCK: Fix warnings | Eugene Sandulenko | |
2016-05-28 | SCI: Explicit type conversion. Avoids warnings on number of compilers. | Eugene Sandulenko | |
2016-05-28 | SCI: Fix warning | Eugene Sandulenko | |
2016-05-28 | SCI32: Remove unused titled text bitmap code | Colin Snover | |
Titled text bitmaps do not appear to be used by any game scripts. They seem to only be used by the error manager in SSCI, but ScummVM has its own error handling, so we don’t need this implementation. | |||
2016-05-28 | PARALLACTION: Safer string manipulation | Eugene Sandulenko | |
2016-05-28 | PARALLACTION: Cleanup object initialization | Eugene Sandulenko | |
2016-05-28 | GROOVIE: Clean initialization for few classes | Eugene Sandulenko | |
2016-05-27 | ACCESS: Fix derived Screen copyBlock method signature | Paul Gilbert | |
2016-05-27 | SCI32: Add explicit checks for null pointers | Colin Snover | |
CID 1351617, 1351618, 1351619, 1351620, 1351621, 1351622, 1354791. | |||
2016-05-27 | SCI32: Initialise pointers in CelObj scaler | Colin Snover | |
This ensures that if there is a bug in the drawing code that causes the row to be unset, it will not result in silently reading garbage out of random memory. CID 1354802 | |||
2016-05-27 | SCI32: Fix CelObj cache | Colin Snover | |
The previous implementation did not work properly, assigning the next insertion index to the oldest object instead of filling empty cache slots on a cache miss. | |||
2016-05-27 | SCI32: Use better name for fixed priority field | Colin Snover | |
The old name matches the selector, but isn’t as clear. | |||
2016-05-27 | SHERLOCK: Remove redundant allocation in surface creation | Paul Gilbert | |
2016-05-27 | MADS: Remove redundant allocation in surface creation | Paul Gilbert | |
2016-05-27 | ACCESS: Remove redundant allocation in surface creation | Paul Gilbert | |
2016-05-26 | TSAGE: Refactor GfxSurface and Screen to not use virtual inheritance | Paul Gilbert | |
2016-05-26 | VOYEUR: Reorder ViewPortResource fields to fix VS packing warnings | Paul Gilbert | |