Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-06-16 | LASTEXPRESS: Get rid of casts on CursorManager::replaceCursor calls. | Johannes Schickel | |
2012-06-16 | LASTEXPRESS: Get rid of casts on OSystem::copyRectToScreen calls. | Johannes Schickel | |
2012-06-03 | ALL: Replace cursorTargetScale in OSystem API with a simple "do not scale" ↵ | Johannes Schickel | |
logic. All uses of the old target scale API actually wanted to disallow scaling of the mouse cursor. This commit adapts our API to this and thus simplifies backend implementations. Some backends, most notable the Wii and Android, did some implementation of the cursor target scale, which I didn't adapt yet. I added a TODO for the porters there. | |||
2012-03-13 | JANITORIAL: Replace (x ? false : true) by !(x). | Christoph Mallon | |
2012-02-15 | JANITORIAL: Fix missing whitespace in pointer cast | Tarek Soliman | |
find -name '*.h' -or -name '*.cpp' | xargs sed -r -i 's@\(([A-Za-z0-9]+)\*\)@(\1 *)@g' This seems to have caught some params as well which is not undesirable IMO. It also caught some strings containing this which is undesirable so I excluded them manually. (engines/sci/engine/kernel_tables.h) | |||
2011-12-13 | COMMON: Make more members of Archive constant. | Andrea Corna | |
2011-11-21 | ALL: Remove unnecessary forward declarations. | Christoph Mallon | |
2011-11-07 | LASTEXPRESS: Fix typos in shared game code (as reported by _sev) | Littleboy | |
2011-11-07 | LASTEXPRESS: Fix typos in entity code (as reported by _sev) | Littleboy | |
2011-11-03 | LASTEXPRESS: Fixed typo in code logic | Filippos Karapetis | |
2011-11-03 | LASTEXPRESS: Fix read size parameter. | Johannes Schickel | |
2011-11-02 | LASTEXPRESS: Fix incorrect read() call | Eugene Sandulenko | |
2011-10-24 | LASTEXPRESS: Add GUIO_NOASPECT to Last Express | Strangerke | |
2011-10-23 | AD: Switched rest of the engines to new GUIO | Eugene Sandulenko | |
2011-10-11 | Last Express: CLIP should use a <int> template to compile correctly. | anotherguest | |
2011-09-19 | LASTEXPRESS: Small cleanup in Entities::processEntity() and ↵ | Littleboy | |
Entities::processFrame() | |||
2011-09-07 | LASTEXPRESS: Fix Francois being stuck when exiting compartment | Littleboy | |
2011-08-07 | JANITORIAL: Add missing NL at EOF. | Christoph Mallon | |
2011-08-06 | LASTEXPRESS: Reduce header dependency | Eugene Sandulenko | |
2011-08-06 | OSYSTEM: extended installTimerProc() with timer ID parameter | Eugene Sandulenko | |
2011-07-08 | LASTEXPRESS: Simplify SoundQueue::updateQueue() | Littleboy | |
- Remove useless cache code - Use helper function to get the proper sound entry - Fix crash on using an invalid entry | |||
2011-07-08 | LASTEXPRESS: Prefix savegame filenames with "lastexpress" | Littleboy | |
2011-07-08 | LASTEXPRESS: Have LastExpress_ADPCMStream inherit directly from ↵ | Littleboy | |
Audio::ADPCMStream (as suggested by clone2727) | |||
2011-07-08 | LASTEXPRESS: Replace existing decodeIMA calls by code using our custom set ↵ | Littleboy | |
of IMA and step tables | |||
2011-07-08 | LASTEXPRESS: Fix typo in filter table | Littleboy | |
2011-07-06 | LASTEXPRESS: implement Sound::updateQueue() and all dependent functions | Eugene Sandulenko | |
2011-07-04 | LASTEXPRESS: Move sound filtering to base Sound class | Littleboy | |
- Rename kSoundStatusRemoved to kSoundStatusClosed - Rename kSoundStatusClear2 to kSoundStatusCached - Remove sound cache handling | |||
2011-07-03 | COMMON: Fix compilation when USE_HASHMAP_MEMORY_POOL is not defined. | Johannes Schickel | |
2011-07-01 | LASTEXPRESS: Fix loading of subtitles from sound name | Littleboy | |
2011-06-29 | LASTEXPRESS: Hook up preliminary sound filtering | Littleboy | |
- Add debug checks in soundFilter() - Rename kSoundStatusClear1 to kSoundStatusFilterVariant | |||
2011-06-29 | LASTEXPRESS: Update sound timer and sound entry playing | Littleboy | |
- Move filtering to SoundEntry class - Make some methods of SoundEntry class private - Add methods to check if a StreamedSound/AppendableSound is done playing | |||
2011-06-29 | LASTEXPRESS: Move SoundStatus to shared header | Littleboy | |
2011-06-29 | LASTEXPRESS: Replace shared sound buffer by per-entry buffer | Littleboy | |
2011-06-28 | LASTEXPRESS: Make SoundEntry members private | Littleboy | |
2011-06-28 | LASTEXPRESS: Cleanup comments | Littleboy | |
2011-06-28 | LASTEXPRESS: Move Sound class to the sound folder | Littleboy | |
2011-06-28 | LASTEXPRESS: Move sound queue related functions to a separate class | Littleboy | |
- Implement missing queue reset function - Cleanup SoundManager::playLoopingSound() | |||
2011-06-28 | LASTEXPRESS: Move more entry-related functions to Entry class | Littleboy | |
2011-06-26 | LASTEXPRESS: Add detection entry for Russian version | Littleboy | |
2011-06-25 | LASTEXPRESS: Give proper name to another sound struct member | Eugene Sandulenko | |
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 | LASTEXPRESS: Implement playLoopingSound() | Eugene Sandulenko | |
In order for it to work properly, updateQueue() should be unstubbed. | |||
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-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 | |||
2011-06-22 | LASTEXPRESS: Refactor Fight class | Littleboy | |
- Replace structs holding function pointers by proper classes - Move each fighter functions to separate files | |||
2011-06-22 | LASTEXPRESS: Move Fight class to its own folder | Littleboy | |
2011-06-22 | LASTEXPRESS: Make some static data const respectively static. | Johannes Schickel | |
2011-06-22 | LASTEXPRESS: Named several soundEntry structure members | Eugene Sandulenko | |