Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-05-22 | SWORD25: Fix signed/unsigned warning | Filippos Karapetis | |
2016-05-22 | SCUMM: Fix compilation with MSVC | Filippos Karapetis | |
2016-05-22 | SCUMM: Fix warnings thrown by MSVC | Filippos Karapetis | |
2016-05-22 | SAGA: Remove curly brackets from some 1-line if statements | Filippos Karapetis | |
2016-05-22 | Merge pull request #759 from salty-horse/neverhood_audio | Eugene Sandulenko | |
NEVERHOOD: Reduce audio header dependencies | |||
2016-05-22 | Merge pull request #760 from salty-horse/scumm_audio | Eugene Sandulenko | |
SCUMM: Reduce audio header dependencies | |||
2016-05-22 | SCUMM HE: Cleanup | Eugene Sandulenko | |
2016-05-22 | SCUMM HE: Added stub for Tree class | Eugene Sandulenko | |
2016-05-22 | SCUMM HE: Added main Moonbase AI code | Eugene Sandulenko | |
2016-05-22 | SCUMM HE: Moved Moonbase stuff to v90he | Eugene Sandulenko | |
2016-05-22 | SCUMM HE: Added Moonbase Traveller class | Eugene Sandulenko | |
2016-05-22 | SCUMM HE: Added implementation for Sortie and DefenderUnit classes | Eugene Sandulenko | |
2016-05-22 | SCUMM HE: Added Moonbase Node class | Eugene Sandulenko | |
2016-05-22 | SCUMM HE: Added Weapon class | Eugene Sandulenko | |
2016-05-22 | SCUMM HE: AIEntity class implementation | Eugene Sandulenko | |
2016-05-22 | SCUMM HE: Initial stub for Moonbase AI | Eugene Sandulenko | |
2016-05-22 | SCUMM HE: Documented more opcodes | Eugene Sandulenko | |
2016-05-22 | SCI: Script patch for fixing 3 missing points in QfG3 | Omer Mor | |
The hero is unable to tell Rakeesh and Kreesha about the Simabani initiation, which would award him 3 points. This is caused by a heap bug in room 285: the local array of possible messages omits this message. The patch fixes the bug by adding this message to the array. Fixes bug #7086 | |||
2016-05-21 | SCUMM: Reduce audio header dependencies | Ori Avtalion | |
2016-05-21 | NEVERHOOD: Reduce audio header dependencies | Ori Avtalion | |
2016-05-18 | SCUMM HE: Document sprite group opcodes | Eugene Sandulenko | |
2016-05-18 | TINSEL: Fix out-of-bounds array access | Eugene Sandulenko | |
2016-05-18 | ACCESS: Plug memory leak | Eugene Sandulenko | |
2016-05-17 | SCUMM HE: Complete Complex Array Operations subopcode. | Eugene Sandulenko | |
Used in FOW calculations in Moonbase. | |||
2016-05-17 | KYRA: Remove redundant code. | Eugene Sandulenko | |
item variable value is less than 33, that is, 32 max. item+1 is never > 33. Thus, the clapping code is redundant. | |||
2016-05-17 | CINE: Remove useless code. | Eugene Sandulenko | |
var_2 used to be always NULL after while() loop, thus, the first if() condition is always false. | |||
2016-05-17 | AGI: Remove useless code. | Eugene Sandulenko | |
We set vtEntries to SCREENOBJECTS_MAX, thus, the loop for (i = vtEntries; i < SCREENOBJECTS_MAX; i++) is a no-op. | |||
2016-05-17 | ALL: Change main engine header guard defines to <directory>_<engine>_H | Eugene Sandulenko | |
Recently we started to use this as new semantics, although in the past we used simly <engine>_H. Now these guard defines are consistent with rest of the files which are used in the engines. | |||
2016-05-17 | SCUMM HE: Started work on Complex Array Operations | Eugene Sandulenko | |
2016-05-17 | LAB: Fix waiting for sounds embedded in animations | Filippos Karapetis | |
A regression of 75d1385c8d1ba61b5740a0b43966d3c2f111440d | |||
2016-05-17 | SCUMM: Add missing break in o70_startSound. | Kirben | |
2016-05-17 | AGOS: Fix potential buffer overflow. | Kirben | |
2016-05-16 | SCI: Removing redundant virtual destructor as per LordHoto's suggestion | Eugene Sandulenko | |
2016-05-16 | SHERLOCK: Further clarification of virtual destructors. Thanks to LordHoto. | Eugene Sandulenko | |
2016-05-16 | SCI: Make the Window destructor actually virtual | Eugene Sandulenko | |
2016-05-16 | SHERLOCK: Remove non-virtual destructor which prevents the superclass one ↵ | Eugene Sandulenko | |
from execution. | |||
2016-05-16 | SCI: Add virtual destructor | Eugene Sandulenko | |
2016-05-16 | SAGA: Add safeguard warning for text access. | Eugene Sandulenko | |
2016-05-16 | SAGA: Fix potential buffer overrun. | Eugene Sandulenko | |
If we have _statusTextInputPos as 256, we're doing incrementing to 257 and storing 0 there. This will lead to memory overwrite. | |||
2016-05-16 | LURE: Fix potential buffer overrun introduced in 8577606 | Eugene Sandulenko | |
2016-05-16 | SCUMM HE: Clarify comment | Eugene Sandulenko | |
2016-05-16 | Merge pull request #747 from salty-horse/gob_headers | Eugene Sandulenko | |
GOB: Reduce audio header dependencies | |||
2016-05-15 | KYRA: Simplify Kyra1 audio track filename handling | Johannes Schickel | |
2016-05-15 | Revert "KYRA: Plug memory leak" | Johannes Schickel | |
This reverts commit 9909cc615d527bc8d43f930d8c88dc014974f2de. This will likely cause invalid memory reads because it frees the last output buffer which is used to keep files in memory. There is a possible memory leak here, when the input data is not well formed. However, fixing this takes some more effort than the solution in the reverted commit. | |||
2016-05-15 | KYRA: Silence analysis tools about possible memory leaks | Johannes Schickel | |
2016-05-15 | Revert "KYRA: Plug memory leak" | Johannes Schickel | |
This reverts commit c22ca8ffb515b03712a0f0e36dd40c7e38c4b8ed. This revision caused invalid memory reads in Kyra1 DOS+FM-TOWNS. | |||
2016-05-15 | KYRA: Plug memory leak | Eugene Sandulenko | |
2016-05-15 | KYRA: Plug memory leak | Eugene Sandulenko | |
2016-05-15 | FULLPIPE: Plug memory leak | Eugene Sandulenko | |
2016-05-15 | ACCESS: Fix memory leak | Eugene Sandulenko | |