Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-15 | WINTERMUTE: Expand subtitles by string table | Tobia Tesan | |
2014-10-15 | WINTERMUTE: Refactor/Reformat VideoSubtitler::update | Tobia Tesan | |
2014-10-15 | WINTERMUTE: Correctly delete _subtitler (which is not an array) | Tobia Tesan | |
2014-10-15 | WINTERMUTE: Declare counters as uint to match Array::size() | Tobia Tesan | |
2014-10-15 | WINTERMUTE: Mass ScummVM-style renaming in subtitles code | Tobia Tesan | |
2014-10-15 | WINTERMUTE: Reinstate CVidSubtitle destructor | Tobia Tesan | |
2014-10-15 | WINTERMUTE: Port actual subtitle display code. | Tobia Tesan | |
2014-10-15 | WINTERMUTE: Add getter for _videoFont | Tobia Tesan | |
2014-10-15 | WINTERMUTE: Use native C types instead of macros | Tobia Tesan | |
2014-10-15 | WINTERMUTE: Re-enable and use PathUtils for auto SRT detection | Tobia Tesan | |
2014-10-15 | WINTERMUTE: Display subtitles in console | Tobia Tesan | |
2014-10-15 | WINTERMUTE: Reinstate subtitle loading | Tobia Tesan | |
2014-10-15 | WINTERMUTE: Take const char in loadSubtitles | Tobia Tesan | |
2014-10-15 | WINTERMUTE: Use BaseFileManager to load SUB file | Tobia Tesan | |
Conflicts: engines/wintermute/video/video_subtitler.cpp | |||
2014-10-15 | WINTERMUTE: Use long-style braces around blocks in imported subtitle code | Tobia Tesan | |
2014-10-15 | WINTERMUTE: Astyle imported WME subtitle code | Tobia Tesan | |
2014-10-15 | WINTERMUTE: Import subtitle code from WME1 | Tobia Tesan | |
2014-09-08 | SYMBIAN: Additional makefile updates. | anotherguest | |
2014-09-08 | SYMBIAN: Updated settings and moved to config.mmh | anotherguest | |
2014-09-08 | SWORD1: Fix speech endianness heuristic on big endian systems | Thierry Crozat | |
This should fix bug #6720. | |||
2014-09-07 | Merge pull request #500 from lordhoto/ttf-improvements | Johannes Schickel | |
Improve TTF Rendering (includes Font API changes). | |||
2014-09-07 | SWORD1: Add debugger command to set mac speech endianness | Thierry Crozat | |
2014-09-07 | MADS: Implement loading resource sequence for AnimationView | Paul Gilbert | |
2014-09-07 | I18N: Regenerate translations data file | Thierry Crozat | |
2014-09-07 | I18N: Fix all translations file | Thierry Crozat | |
Following a recent commit all the translations files contained two duplicate msgid, which threw off msgmerge. Also merge with the new scummvm.pot. | |||
2014-09-07 | I18N: Update credits for Dutch translation | Ben Castricum | |
2014-09-07 | I18N: Add Dutch translation | Ben Castricum | |
2014-09-07 | I18N: Update scummvm.pot from source | Ben Castricum | |
2014-09-07 | SWORD1: Fix typo in comment | Thierry Crozat | |
2014-09-07 | SWORD1: Silence some GCC warnings. | unknown | |
Signed/unsigned comparison. | |||
2014-09-07 | CGE2: Refactor _startupMode. | unknown | |
2014-09-07 | Revert "CGE2: Make the intro skippable." | Peter Bozsó | |
This reverts commit 5e099e90bcdfb87c289b919ddac60e60fbf6bdd7. There's no need for this addition, since the intro was skippable before that too, by hitting the ESC key. See System::touch(). | |||
2014-09-07 | KYRA (LOL): Fix bug #6727 due to incorrect assertion range. | D G Turner | |
This was the bug with "Engine assertion at various dialogues if no items in inventory". | |||
2014-09-06 | MADS: Fix palette for difficulty selection dialog | Paul Gilbert | |
2014-09-06 | MADS: Properly free menu items when main menu is freed | Paul Gilbert | |
2014-09-06 | CGE2: Make the intro skippable. | Peter Bozsó | |
2014-09-06 | MADS: Fix spare screen background changes for TextView showing quotes | Paul Gilbert | |
2014-09-06 | CGE2: Update English autodetection. | Peter Bozsó | |
2014-09-06 | MADS: Fix text not properly being erased when showing quotes | Paul Gilbert | |
2014-09-05 | MADS: Fix custom color setup for quotes display | Paul Gilbert | |
2014-09-05 | MADS: Fix OPL init error when showing credits multiple times | Paul Gilbert | |
2014-09-05 | MADS: Fix exiting the game | Paul Gilbert | |
2014-09-05 | MADS: Fix starting TextView palette setup and scroll ending | Paul Gilbert | |
2014-09-05 | SWORD1: Improve speech endianess detection in mac version | Thierry Crozat | |
Because of the way the speech is compressed with duplicate samples being stored with a negative size and a single value, when reading the data with the wrong endianess we can end up with a lot of duplicate samples which biased the result with the way the old heuristic was coded. Hopefully this change to skip duplicate samples will make it more robust. | |||
2014-09-05 | SWORD1: Fix heuristic to determine the endianess of the speech in mac version | Thierry Crozat | |
Because the data is compressed (a repeated sample is coded as a negative length followed by the value), when the length is read with the wrong endianess we get completely wrong data. So to get the BE data we cannot just read them assuming LE and byteswap afterward. | |||
2014-09-04 | MADS: Fix text not showing at all for Quotes | Paul Gilbert | |
2014-09-04 | MADS: Fix palette setup for credits view | Paul Gilbert | |
2014-09-03 | MADS: Properly implement drawing to a subset of the screen | Paul Gilbert | |
2014-09-03 | GRAPHICS: Allow negative xOffset in TTF. | Johannes Schickel | |
This should improve the visual looks of many fonts. However, it might result in the first line of the glyph to be drawn left of the position specified in drawChar. | |||
2014-09-03 | GRAPHICS: Allow to query the bounding box of chars/strings drawn with Font API. | Johannes Schickel | |