Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-06-26 | DREAMWEB: Added italian floppy release | Vladimir Menshakov | |
2011-06-26 | DREAMWEB: Added assert on memcpy overlap | Vladimir Menshakov | |
2011-06-25 | HUGO: Fix incorrect usage of sizeof | Willem Jan Palenstijn | |
Thanks to salty-horse for the report. The new sizes are the ones that were replaced by sizeof in 399b59a583b. | |||
2011-06-25 | SCI: Fix incorrect usage of sizeof | Willem Jan Palenstijn | |
Thanks to salty-horse for the reports. | |||
2011-06-25 | DREAMWEB: Removed workaround of invalid size of extext data | Vladimir Menshakov | |
2011-06-25 | DREAMWEB: Save registers in vsync, like in original sources | Vladimir Menshakov | |
2011-06-25 | KYRA: _athrxx is the new Kyra maintainer. | Johannes Schickel | |
2011-06-25 | DREAMWEB: Minor cleanup in playSound, added kSpeechSoundType for speech | Vladimir Menshakov | |
2011-06-25 | DREAMWEB: Added missing syncSoundSettings() | Vladimir Menshakov | |
2011-06-25 | DREAMWEB: Reimplemented modifychar and language switching | Vladimir Menshakov | |
2011-06-25 | DREAMWEB: Replaced foreign-guarded code with "foreignrelease" variable, ↵ | Vladimir Menshakov | |
added modifychar stub | |||
2011-06-25 | KYRA: revert d7e700f370c258a5f4786d972af3666b93b71f94 | athrxx | |
The GMM mouse cursor bug has now been fixed inside the GMM and CursorMan code. | |||
2011-06-25 | GUI: fix bug #2822778 | athrxx | |
(Savegames now get loaded after GMM dialogue execution. This avoids mouse cursor glitches (e.g. mouse cursors which get changed during loadGameState() being popped when the dialogue closes). | |||
2011-06-25 | MOHAWK: Made some Myst common opcodes match the original better | Bastien Bouclet | |
Plus some minor cleanup | |||
2011-06-25 | DREAMWEB: Added german and spanish floppy versions | Vladimir Menshakov | |
2011-06-25 | LASTEXPRESS: Give proper name to another sound struct member | Eugene Sandulenko | |
2011-06-25 | SCI: Fixed bug #3325512: "EcoQuest 1: Audio settings are not saved" | Filippos Karapetis | |
2011-06-25 | DREAMWEB: Fixed quit from keypad screen | Vladimir Menshakov | |
2011-06-25 | DREAMWEB: Fixed keypad animation | Vladimir Menshakov | |
2011-06-25 | MOHAWK: Don't crash when getting odd types from LB target expressions. | Alyssa Milburn | |
(Thanks to [md5] for pointing it out.) | |||
2011-06-25 | SCI: Added the Mac versions of LSL1, LSL5 and Dr. Brain 1 | Filippos Karapetis | |
Taken from bug reports #3328251, #3328262 and #3328257. Thanks to omer_mor for reporting these | |||
2011-06-24 | TSAGE: Silent a GCC warning reported by eriktorbjorn | Strangerke | |
2011-06-24 | MOHAWK: Handle ++/-- operators in LBCode. | Alyssa Milburn | |
2011-06-24 | MOHAWK: Partial support for newer LB targeting types. | Alyssa Milburn | |
2011-06-24 | MOHAWK: Allow matching LBValue items by their name. | Alyssa Milburn | |
2011-06-24 | LASTEXPRESS: Move subtitle-related methods to the SubtitleEntry class | Littleboy | |
2011-06-24 | LASTEXPRESS: Refactor Sound class | Littleboy | |
- Move entry-related functions to separate class - Move enumeration to shared header and rename FlagType to SoundFlag | |||
2011-06-24 | DREAMWEB: Show subtitle options only for CD version | Vladimir Menshakov | |
2011-06-24 | DREAMWEB: Fixed continuing to another procedure. (axe misuse crash) | Vladimir Menshakov | |
2011-06-24 | LASTEXPRESS: Implement playLoopingSound() | Eugene Sandulenko | |
In order for it to work properly, updateQueue() should be unstubbed. | |||
2011-06-24 | DREAMWEB: Fixed quit() from dialogue | Vladimir Menshakov | |
2011-06-23 | DREAMWEB: Added ui settings integration | Vladimir Menshakov | |
2011-06-23 | DREAMWEB: Added subtitle option | Vladimir Menshakov | |
2011-06-23 | SAGA: Fix for Bug #3324850 ("ITE (SAGA): crash in dog sewers") | D G Turner | |
This read of 1 byte past the end of the buffer has existed since the dragonMove() function was implemented, but since the change in bfb0986c to use ByteArray, this now causes an assertion due to the stricter bounds checking. This commit corrects the original issue. Thanks to fuzzie for this fix. | |||
2011-06-23 | TSAGE: Silence GCC warnings. | eriktorbjorn | |
2011-06-23 | ANALYSIS: Add static casts to is* functions | Littleboy | |
This fixes a potential problem with passing char values that would be sign-extended and yield unexpected results. See http://msdn.microsoft.com/en-us/library/ms245348.aspx | |||
2011-06-23 | LASTEXPRESS: Extract Clock and TrainLine classes to separate files | Littleboy | |
2011-06-23 | LASTEXPRESS: Move Menu class to a separate folder | Littleboy | |
2011-06-23 | TSAGE: Added saving/restoring of playing sounds to savegames | Paul Gilbert | |
2011-06-23 | SWORD25: Add error checks after allocating memory with malloc | Julien | |
2011-06-23 | SCI: Allocate decompression buffers on the heap | Julien | |
2011-06-23 | KYRA: Allocate screen region buffer on the heap | Julien | |
2011-06-23 | DRACI: Allocate no-sound buffer on the heap in LegacySoundArchive::openArchive() | Julien | |
2011-06-23 | LURE: Allocate debug strings buffer on the heap | Julien | |
2011-06-23 | TSAGE: Allocate resource decoding buffer on the heap | Julien | |
2011-06-23 | TEENAGENT: Allocate large buffers on the heap instead of the stack | Julien | |
2011-06-23 | ANALYSIS: Fix potential memory leak when using realloc | Julien | |
When reallocation is unsuccessful, the passed buffer is not freed. In this case, assigning the result (NULL) will result in a leak of the original memory buffer. See http://msdn.microsoft.com/en-us/library/kkedhy7c.aspx | |||
2011-06-23 | AGOS: Fix operator precedence warning | Julien | |
2011-06-23 | DRACI: Replace abort() call by error() | Julien | |
2011-06-22 | LASTEXPRESS: Fix leak and corruption of event handlers function pointers | Littleboy | |
- Add better error handling - Properly delete previous event handlers when setting new ones or restoring from backup |