Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-06-20 | SCI: Implement kRemapColors(5 - set color intensity) | Filippos Karapetis | |
It's finally nighttime in the first murder scene in PQ4 | |||
2012-06-20 | SCI: Remove multibyte character processing code from SCI32 | Filippos Karapetis | |
There are no Japanese/PC-98 SCI32 games, so this code is not needed | |||
2012-06-20 | SCI: Don't attempt to draw line feed characters in SCI32 | Filippos Karapetis | |
Fixes junk in the about dialogs in PQ4 | |||
2012-06-19 | PS2: Small formatting fixes. | Johannes Schickel | |
2012-06-18 | Merge pull request #249 from digitall/PS2DayOfWeek | Johannes Schickel | |
PS2: Implement algorithm for day of week for use in tm_wday. | |||
2012-06-18 | HUGO: Remove F9 key handling | Strangerke | |
2012-06-18 | HUGO: Missing file in previous commit | Strangerke | |
2012-06-18 | HUGO: Remove dead code | Strangerke | |
2012-06-18 | PS2: Implement algorithm for day of week for use in tm_wday. | D G Turner | |
2012-06-18 | CGE: Remove dead code originally used to load a savegame when starting the game | Strangerke | |
2012-06-18 | GOB: Add a workaround for the wrong German animal names in Little Red | Sven Hesse | |
The DOS, Amiga and Atari version of Little Red come with a small screen, accessible through the main menu, that lets children read and listen to animal names in 5 languages: French, German, English, Spanish and Italian. Unfortunately, the German names are partially wrong. This is especially tragic because this is a game for small children and they're supposed to learn something here. So I deem fixing this a very good idea. Just to be sure, someone should probably look over the French, Spanish and Italian words too. | |||
2012-06-18 | GOB: Don't loop /all/ sounds in Little Red | Sven Hesse | |
Just the title music... *cough* | |||
2012-06-18 | SCI: Store script sizes in 32-bit integers | Filippos Karapetis | |
Since scripts can be larger than 64KB, and getBufSize() returns a 32-bit integer, adapt variables that store script sizes accordingly | |||
2012-06-18 | SCI: Add setter/getter methods to reg_t's | Filippos Karapetis | |
No functionality change has been made with this commit. This avoids setting and getting the reg_t members directly, and is the basis of any future work on large SCI3 scripts (larger than 64KB) | |||
2012-06-18 | SCI: Add a check for empty VMD file names | Filippos Karapetis | |
2012-06-17 | Merge pull request #244 from clone2727/football2002-wday | Johannes Schickel | |
COMMON: Add tm_wday to our TimeDate struct | |||
2012-06-17 | COMMON: Change pulseEvent to better reflect how it works in Windows | Paul Gilbert | |
2012-06-17 | GROOVIE: Fix 'off-by-one' when searching for ROQs by name | Scott Thomas | |
2012-06-17 | SAGA: Workaround fix for IHNM pathfinding glitches. | D G Turner | |
This fixes bug #3360396 - "IHNM: Can't use right monitor with ellen". Have done a full playtest of IHNM to ensure this fixes the issue without any other regressions. Thanks to eriktorbjorn for creating this patch. | |||
2012-06-16 | GOB: Fix a segfault when quitting AJ's World | Sven Hesse | |
2012-06-16 | GOB: Add a SaveLoad class for AJ's World | Sven Hesse | |
Only contains a temp sprite handler ("menu.inf") for now. This fixes the graphical glitch after clicking on the cloud. | |||
2012-06-16 | GOB: Add a proper GameType for AJ's World | Sven Hesse | |
2012-06-16 | GOB: Correct the name of A.J.'s World of Discovery | Sven Hesse | |
2012-06-15 | AUDIO: Make sure maxtrax and tfmx are compiled in with dynamic modules | Matthew Hoops | |
2012-06-16 | AUDIO: gob uses protracker too | Sven Hesse | |
2012-06-16 | NEWS: Ooops, proper alphabetical ordering | Sven Hesse | |
2012-06-16 | GOB: Add Little Red to the gob games list comment | Sven Hesse | |
2012-06-16 | README: Add Little Red to the gob games list | Sven Hesse | |
2012-06-16 | NEWS: Mention Little Red support | Sven Hesse | |
2012-06-16 | GOB: Remove a superfluous semicolon | Sven Hesse | |
2012-06-16 | GOB: Loop the Little Red title music | Sven Hesse | |
2012-06-16 | GOB: Shut up Little Red's warning about gob func 1 and 2 | Sven Hesse | |
Those set some DOS timer interrupt related to sound. Seems to be unnecessary for us. | |||
2012-06-16 | GOB: Use the full title for Little Red Riding Hood | Sven Hesse | |
While the other parts in the series are mostly hard-coded, they are small, simple and monotone enough that I might just think about implementing them some day... | |||
2012-06-16 | GOB: Fix mult object collision detection I broke in 2007 | Sven Hesse | |
This fixes the sidescroller levels (like the bees and butterflies) in Little Red. I really wonder if this breakage had other effects too... | |||
2012-06-15 | SCI: Change getClassAddress() to only require the caller segment | Filippos Karapetis | |
The caller offset is never actually used inside the function | |||
2012-06-15 | SCI: Also skip a robot video in the Lighthouse demo | Filippos Karapetis | |
2012-06-15 | SCI: Replace RAW_IS_OBJECT with a method | Filippos Karapetis | |
2012-06-15 | SCI: Fix warnings | Filippos Karapetis | |
Thanks to DrMcCoy for reporting them | |||
2012-06-15 | Revert "SCI: Change Script::getObject() to accept a reg_t" | Filippos Karapetis | |
This reverts commit 577d7e41c9ca2c498dc85e41c373fbdca8d2ed41. | |||
2012-06-15 | GOB: Add a resource size workaround for Little Red | Sven Hesse | |
This fixes the missing resources in the screen where Little Red has to find the animals' homes for them. | |||
2012-06-15 | GOB: Implement Util::getKeyState() for Little Red | Sven Hesse | |
This makes the bees level playable, removing the "lock-up". Collision detection between Little Red and the bees and butterflies doesn't work yet though, so they're just flying through her. Nevertheless, the game seems to be completable now. | |||
2012-06-15 | TOON: Simplify code in Animation::drawFrameWithMaskAndScale(). | D G Turner | |
2012-06-15 | SCI: Further cleanup of the script code | Filippos Karapetis | |
Merge the init() and load() Script methods and reset the script when necessary | |||
2012-06-15 | SCI: Skip playing of the unsupported robot video 1003 in RAMA | Filippos Karapetis | |
2012-06-15 | SCI: _propertyOffsetsSci3 and classpos should be 32-bit integers | Filippos Karapetis | |
These are needed for future handling of large SCI3 script files | |||
2012-06-15 | SCI: Clean up the script initialization code | Filippos Karapetis | |
2012-06-15 | SCI: Change Script::getObject() to accept a reg_t | Filippos Karapetis | |
This is needed for upcoming changes to the Script class | |||
2012-06-15 | SCI: Limit floodfill hack to GK1 | Filippos Karapetis | |
Fixes the intro of LSL7 and the inventory screen in PQ4 | |||
2012-06-15 | SCUMM: The target and Wii releases of a few HE games are HE101, since they ↵ | Travis Howell | |
have differce in debugInput opcode too. | |||
2012-06-15 | NEWS: Add Fixes in HE98 version of Pajama Sam's Lost & Found. | Travis Howell | |