Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-06-28 | SCI: Fixed script bug #3292327 - "SCI: HOYLE4: Cribbage bug" | Filippos Karapetis | |
2011-06-28 | DREAMWEB: Removed memcpy as suggested by wjp | Vladimir Menshakov | |
2011-06-27 | TOON: Add delay to inventory rendering loop. Uses a bit less CPU now. | eriktorbjorn | |
2011-06-27 | TSAGE: Separated the sound manager processing into it's own thread | Paul Gilbert | |
This will be necessary with the introduction of the Sound FX driver, since the sound manager will do the processing for both drivers, but each will need to do their own output in their AudioStream thread | |||
2011-06-26 | Merge branch 'master' of github.com:scummvm/scummvm | eriktorbjorn | |
2011-06-26 | TOON: Fix the bottom pixels of text being cut off | eriktorbjorn | |
It's a dirty rect problem. The computeSize() function needs to take into consideration that the glyph may be offset, so it's not enough to just look at its size. For now, I'm assuming that this is only a problem with characters that stick out below the base line, so that's all this patch tries to fix. Let's see if that's enough. | |||
2011-06-26 | LASTEXPRESS: Add detection entry for Russian version | Littleboy | |
2011-06-26 | SWORD25: Change unknow handle error into a warning | Thierry Crozat | |
Also add sanity checks when calling findHandle() in the SoundEngine. This fixes an issue when functions of SoundEngine are called on a sound that has already finished playing (the most common occurrences are calls to isSoundPlaying()). | |||
2011-06-26 | SWORD25: Fixed bug with concurrent sounds. Reported by criezy | Eugene Sandulenko | |
2011-06-26 | SWORD25: Fix bug with loading saves when some saves are missing | Eugene Sandulenko | |
2011-06-26 | CINE: Fixed compilation when DUMP_SCRIPTS is set | Filippos Karapetis | |
2011-06-26 | TSAGE: Silence GCC warnings | eriktorbjorn | |
2011-06-26 | TSAGE: Several bugfixes for sound output to match the original | Paul Gilbert | |
2011-06-26 | TSAGE: Fix for properly initialising the _voiceTypeStructPtrs array | Paul Gilbert | |
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 |