Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-01-19 | GRAPHICS: Fix MacFont assignment | Eugene Sandulenko | |
We're almost back to the functionality with the BDF fonts. Current missing feature is font autoscaling | |||
2017-01-18 | TITANIC: Fix TV playback during prologue | Paul Gilbert | |
2017-01-18 | TITANIC: Renaming of CParrot statics, miscellaneous fixes | Paul Gilbert | |
2017-01-18 | DIRECTOR: Lingo: Added list of D3 and D4 keywords | Eugene Sandulenko | |
2017-01-18 | I18N: Change the French translation back to ISO-8859-1 | Thierry Crozat | |
Two accepted suggestions used a curly single quote, which caused the file to be converted to UTF-8. They have been converted back to straight single quotes. | |||
2017-01-18 | I18N: Update translation (French) | Purple T | |
Currently translated at 100.0% (929 of 929 strings) | |||
2017-01-18 | GRAPHICS: Fix font name generation for MacFonts | Eugene Sandulenko | |
2017-01-18 | GRAPHICS: Further work on MacFont loading | Eugene Sandulenko | |
2017-01-18 | DIRECTOR: More debug output to mac font loading test | Eugene Sandulenko | |
2017-01-18 | GRAPHICS: Plug in loaded MacFONTFonts into MacFontManager | Eugene Sandulenko | |
2017-01-18 | README: Removing links to obsolete compilation instructions | Eugene Sandulenko | |
2017-01-18 | DIRECTOR: Fix Compiler Warning. | D G Turner | |
2017-01-17 | TITANIC: Remove accidentally committed debug code | Paul Gilbert | |
2017-01-17 | TITANIC: Handle -1 frameNumber in AVISurface::addEvent like original | Paul Gilbert | |
2017-01-17 | TITANIC: Fixes to CParrot frameMsg method | Paul Gilbert | |
2017-01-17 | ADL: Implement hires5 time machine animation | Walter van Niftrik | |
2017-01-17 | SCI: Add more version info to SQ4 detection entry | Tarek Soliman | |
2017-01-17 | GRAPHICS: Rename MacFont to MacFONTFont to avoid clashed | Eugene Sandulenko | |
2017-01-17 | GRAPHICS: Implementing kerning calculation for MacFonts | Eugene Sandulenko | |
2017-01-17 | GRAPHICS: Split out MacFontFamily class out of MacFont | Eugene Sandulenko | |
2017-01-17 | DIRECTOR: Refactor Text Rendering. Use alignment of MacText. Render to ↵ | stevenhoefel | |
temporary surface to allow ink blitting. | |||
2017-01-17 | GRAPHICS: MacText calculate longest string inside maxWidth and add alignment. | stevenhoefel | |
2017-01-17 | GRAPHICS: Fix oversight on length value to return. | stevenhoefel | |
2017-01-17 | GRAPHICS: Fix Zero Length Format String Compiler Warnings. | D G Turner | |
2017-01-17 | GRAPHICS: Fix FOND loading | Eugene Sandulenko | |
2017-01-17 | DIRECTOR: Added test for font loading | Eugene Sandulenko | |
2017-01-17 | GRAPHICS: Added debug output to FOND loading | Eugene Sandulenko | |
2017-01-17 | BLADERUNNER: Fix Unsigned vs. Signed Compiler Warnings. | D G Turner | |
2017-01-17 | DC: Fix Variable Shadowing Compiler Warning. | D G Turner | |
2017-01-17 | CLOUD: Fix Unsigned vs. Signed Comparison Compiler Warning. | D G Turner | |
2017-01-16 | TITANIC: Fix showing all that pink during Prologue and in Parrot room | Paul Gilbert | |
2017-01-16 | TITANIC: Fix CParrot movieFrameMsg | Paul Gilbert | |
2017-01-16 | TITANIC: Fix if check in CParrot frameMsg | Paul Gilbert | |
2017-01-16 | TITANIC: Fix some Liftbot dialogue responses | Paul Gilbert | |
2017-01-17 | GRAPHICS: More work on FOND loading | Eugene Sandulenko | |
2017-01-16 | TITANIC: Fix locating vocab words in getPrimeWord | Paul Gilbert | |
2017-01-16 | GRAPHICS: First part for reading FOND Mac resources | Eugene Sandulenko | |
2017-01-16 | SCI32: Script patch priority drawing bug in MGDX | Colin Snover | |
This fixes the horse at the fountain drawing on top of the fountain instead of behind it. | |||
2017-01-16 | GRAPHICS: Initial code for reading FONT Mac resources | Eugene Sandulenko | |
2017-01-16 | I18N: Update translations templates | Thierry Crozat | |
2017-01-16 | SCI32: Add workarounds for MGDX | Colin Snover | |
2017-01-16 | SCI32: Add pic cel to CelInfo32 debugging output | Colin Snover | |
2017-01-16 | SCI32: Fix handling of negative z-indexes | Colin Snover | |
Fixes the ego disappearing behind the castle doors in MGDX. | |||
2017-01-16 | SCI32: Add workaround for Hoyle5 | Colin Snover | |
2017-01-16 | SCI32: Disable compression on Hoyle5 options files | Colin Snover | |
Compression overhead takes up more space than uncompressed files, plus the uncompressed files it creates are marginally quicker and easier to debug with external tools. | |||
2017-01-16 | SCI32: Add workarounds for KQ7 2.00b | Colin Snover | |
2017-01-16 | SCI32: Clarify comment about empty code path in cursor code | Colin Snover | |
2017-01-16 | SCI32: Fix loading save games in KQ7 1.51 | Colin Snover | |
2017-01-16 | SCI: Remove unused SciEngine::speechAndSubtitlesEnabled method | Colin Snover | |
2017-01-16 | SCI32: Fix spinloop in Hoyle5 | Colin Snover | |
Hoyle5 will spin on kGetTime between 15 and 300 ticks in multiple game scripts in order to delay execution (for example, after choosing opponents and clicking "okay"). This causes ScummVM to be unresponsive and wastes CPU time. This commit patches the spin subroutines to instead call a kernel function (kWait) that waits without a spin loop. This kernel function was removed in SCI2, and has been added back in ScummVM specifically for Hoyle5, so this patch will not work with the original interpreter. |