Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-01 | TSAGE: R2R - More renaming in scene 250 | Strangerke | |
2013-09-01 | TSAGE: R2R - Fix elevator behavior (scene 250) | Strangerke | |
2013-08-31 | TSAGE: Some renaming in Scene250 | Strangerke | |
2013-08-28 | VIDEO: Add support for seeking in AVI videos with an index | Matthew Hoops | |
Rewinding will work in any AVI video | |||
2013-08-28 | VIDEO: Improve accuracy of getFrameTime() and getFrameAtTime() | Matthew Hoops | |
2013-08-28 | VIDEO: Use the main isSeekable() in seekToFrame() | Matthew Hoops | |
2013-08-28 | VIDEO: Separate external and internal tracks | Matthew Hoops | |
Prevents subclasses from having access to any audio track added from another file | |||
2013-08-28 | VIDEO: Make getFrameAtTime() public | Matthew Hoops | |
2013-08-27 | TSAGE: Renaming of spaceport working ship components subclass | Paul Gilbert | |
2013-08-27 | TSAGE: Fix for R2R scene change crash getting into intact spaceship | Paul Gilbert | |
2013-08-28 | TSAGE: Some renaming in Scene600 | Strangerke | |
2013-08-28 | TSAGE: Remove SceneExt::loadScene() as the code is duplicate from ↵ | Strangerke | |
Scene::loadScene() | |||
2013-08-27 | WINTERMUTE: Remove duplicate code | Willem Jan Palenstijn | |
2013-08-27 | WINTERMUTE: Simplify string matching | Willem Jan Palenstijn | |
2013-08-26 | WINTERMUTE: Fix and clean up BaseSurfaceOSystem::finishLoad() | Willem Jan Palenstijn | |
This fixes a couple of cases which fell through the cracks of the previous chain of conditions, including 16bpp images and 32bpp images without alpha. The latter partially fixes bug #3600667. | |||
2013-08-26 | SCUMM: Fix COMI regression, after commit ↵ | Kirben | |
84d1d28373d782464bd46b10abd6b092f7eb6367. | |||
2013-08-25 | WINTERMUTE: Fix colormod with alpha blending | Willem Jan Palenstijn | |
Now apply colormod only to the src color instead of to the dst. The original code did this inconsistently depending on if the colormod was 0 or not. | |||
2013-08-25 | WINTERMUTE: Fix alpha blending with colormod | Willem Jan Palenstijn | |
This fixes numerous transparency effects in J.U.L.I.A. | |||
2013-08-25 | TSAGE: Silence GCC warning about variable being shadowed | Torbjörn Andersson | |
2013-08-25 | TSAGE: Silence GCC signed/unsigned warning | Torbjörn Andersson | |
2013-08-25 | TSAGE: Fix to the R2R scene 1550 junk display loop | Paul Gilbert | |
2013-08-25 | TSAGE: Further cleanup for spaceport scene | Paul Gilbert | |
2013-08-25 | TSAGE: Fix cursor when leaving the scanner dialog | Paul Gilbert | |
2013-08-24 | TSAGE: Added code to make newly added inventory items immediately visible | Paul Gilbert | |
2013-08-24 | TSAGE: Further R2R scene 1550 renaming, and fixing tracking junk state | Paul Gilbert | |
2013-08-24 | TSAGE: Further R2R scene 1550 fields renaming | Paul Gilbert | |
2013-08-24 | TSAGE: Variable renaming in R2R scene 1550 | Paul Gilbert | |
2013-08-24 | TSAGE: Clean up of R2R scene 1550 player position tracking | Paul Gilbert | |
2013-08-24 | TSAGE: Corrected usage of quinn and speaker classes across scenes | Paul Gilbert | |
2013-08-24 | TSAGE: Fixed playing of scanner tones when switching between characters | Paul Gilbert | |
2013-08-24 | WINTERMUTE: Fix warning | Willem Jan Palenstijn | |
2013-08-23 | TIZEN: Silence cppcheck warning in scanStringUntil() | Torbjörn Andersson | |
This is consistent with scanString(), and I have verified that the included test cases still work. | |||
2013-08-23 | AGOS: Add two savegame-related FIXMEs | Willem Jan Palenstijn | |
2013-08-23 | AGOS: Use Common::String for savegame filenames | Willem Jan Palenstijn | |
2013-08-23 | AGOS: Simplify string parsing | Willem Jan Palenstijn | |
2013-08-23 | AGOS: Use Common::strlcpy() instead of strncpy() | Torbjörn Andersson | |
As suggested by LordHoto. | |||
2013-08-23 | TINSEL: Add the English Mac version of DW1 (bug #3614864) | Filippos Karapetis | |
2013-08-23 | SCI: Fix several script bugs in Hoyle 4 (Bridge) | Filippos Karapetis | |
This also fixes bug #3361925 - "SCI: HOYLE4: Crash in bridge" | |||
2013-08-23 | SCI: Give more verbose error messages on arithmetic errors | Filippos Karapetis | |
2013-08-23 | AGOS: Use strncpy() instead of strcpy(). CID 1003679, 1003681 | Torbjörn Andersson | |
2013-08-23 | TSAGE: R2R - Some more renaming and comments in scene 600 | Strangerke | |
2013-08-23 | TSAGE: R2R - Some more renaming in scene 600 | Strangerke | |
2013-08-22 | TSAGE: Replace some British English by American English | Strangerke | |
2013-08-22 | TSAGE: R2R - Replace more magic values by constants | Strangerke | |
2013-08-22 | TSAGE: R2R - Fix invalid call to getObjectScene() | Strangerke | |
2013-08-22 | TSAGE: R2R - Fix some checks on action, check calls of getObjectScene and ↵ | Strangerke | |
replace magic values by constant | |||
2013-08-22 | Merge pull request #361 from rundfunk47/guiimprovements | Eugene Sandulenko | |
GUI: Various GUI Improvements | |||
2013-08-22 | THEME: Add back entry for color when hovering over button | Narek Mailian | |
2013-08-22 | GRAPHICS: Increase robustness of VectorRendererSpec::drawString. | Johannes Schickel | |
2013-08-22 | GRAPHICS: Unify drawing paths in VectorRendererSpec::drawString. | Johannes Schickel | |
Formerly, the behavior between when a drawable area was specified and when not was different in a sense which is not expected. For example, when an empty textDrawableArea was passed and the text could be drawn outside the 'area' specified. While when a textDrawableArea covering the whole screen was passed the text was clipped inside 'area'. Now, the code does follow the latter logic in both cases. I am not sure whether this will cause any issues, but a quick check of the launcher and options menu didn't reveal anything... |