aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-04-14BLADERUNNER: Don't restart dialogue with offended LarryThanasis Antoniou
2019-04-14BLADERUNNER: Remove line about Izo being in UG02 CH04Thanasis Antoniou
2019-04-13BUILD: On PSP use -O2 to fix compiling with new toolchainrsn8887
-O2 works, but the updated psp compiler doesn't compile with -O3. It gives the error ``` graphics/macgui/macwindowmanager.cpp: In member function 'void Graphics::MacWindowManager::passPalette(const byte*, uint)': graphics/macgui/macwindowmanager.cpp:517:1: error: unrecognizable insn: } ^ (insn 139 138 140 23 (set (reg:SI 294) (if_then_else:SI (ne:CC (reg:CC 67 $fcc0) (const_int 0 [0])) (reg/v:SI 256 [ di ]) (reg/v:SI 229 [ di ]))) -1 (nil)) graphics/macgui/macwindowmanager.cpp:517:1: internal compiler error: in extract_insn, at recog.c:2202 ```
2019-04-13BUILD: Fix PSP compilation tests for updated buildbot toolchainrsn8887
2019-04-13KYRA: (EOB) - another try to fix PSP/OpenPandoraathrxx
2019-04-13KYRA: (EOB) - try to fix PSP and OpenPandoraathrxx
This is guesswork. I really don't understand the actual problem (internal compiler error: in get_addr_dereference_operands, at tree-ssa-operands.c:1698)
2019-04-13KYRA: hopefully fix broken NDS, AmigaOS, PSP, OpenPandora portsathrxx
Unfortunately I don't understand the reason for the PSP and OpenPandora failure. The (should be irrelevant) DarkmoonSequenceHelper changes are just a try...
2019-04-13SCI: (PC-98 driver) - silence -Wshadow warningathrxx
2019-04-13KYRA: (EOB) - silence -Wshadow warningathrxx
2019-04-13KYRA: (EOB2/Amiga) - update news fileathrxx
2019-04-13KYRA: (EOB2/Amiga) - final glitches fixathrxx
2019-04-13KYRA: (EOB2/Amiga) - fix German version monster soundathrxx
(Monster sounds are broken in the original, because the devs seem to have accidently left the sound track numbers from the DOS version. This will add a workaround.)
2019-04-13KYRA: (EOB2/Amiga) - implement proper sound file loadingathrxx
(also fix some sound related bugs)
2019-04-13KYRA: (EOB2/Amiga) - fix flesh to stone spell colorsathrxx
2019-04-13KYRA: (EOB2/Amiga) - fix German version textathrxx
(add necessary character conversion)
2019-04-13KYRA: (EOB) - fix party transfer glitchathrxx
(recalculate armor class after party transfer from EOB I to EOB II)
2019-04-13KYRA: (EOB) - fix saveload menu glitchathrxx
The save file list needs a refresh after transfering a party from EOB I to EOB II. This did not always happen.
2019-04-13KYRA: (EOB2/Amiga) - fix original save file handlingathrxx
2019-04-13KYRA: (EOB2/Amiga) - fix sequence dialogue fieldathrxx
2019-04-13KYRA: (EOB2/Amiga) - fix ingame colorsathrxx
2019-04-13KYRA: (EOB2/Amiga) - fix GUI colorsathrxx
2019-04-13KYRA: (EOB2/Amiga) - add special gfx decoder for localized versionathrxx
2019-04-13KYRA: (EOB2/Amiga) - fix text resource loadingathrxx
2019-04-13KYRA: (EOB2/Amiga) - fix detect magic blue shapesathrxx
2019-04-13KYRA: (EOB2/Amiga) - fix main menu version string colorathrxx
2019-04-13KYRA: (EOB2/Amiga) - fix monster shape encodingathrxx
2019-04-13KYRA: (EOB2/Amiga) - fix vcn block drawingathrxx
2019-04-13KYRA: (EOB2/Amiga) - improve font file warningsathrxx
- add warning for wrong font file: The German version of EOB II has a font file with more characters than the English version or the EOB I fonts. Users now get a warning/instruction if they have the wrong file. - add translation support for all AmigaDOS font related warnings/errors
2019-04-13KYRA: (EOB) - minor sequence code cleanupathrxx
2019-04-13KYRA: (EOB2/Amiga) - fix ending sequenceathrxx
2019-04-13KYRA: (EOB2/Amiga) - update sound driverathrxx
- add fade out method - some renaming - turn a warning into a debug message
2019-04-13KYRA: (EOB2/Amiga) - fix load up and intro sequenceathrxx
2019-04-13KYRA: (EOB2/Amiga) - add static resourcesathrxx
2019-04-13KYRA: (EOB2/Amiga) - add detection entriesathrxx
2019-04-13I18N: Update translation (German)Adrian Frühwirth
Currently translated at 100.0% (1061 of 1061 strings)
2019-04-13I18N: Update translation (German)Adrian Frühwirth
Currently translated at 100.0% (1061 of 1061 strings)
2019-04-13I18N: Update translation (Swedish)Adrian Frühwirth
Currently translated at 92.5% (982 of 1061 strings)
2019-04-13I18N: Update translation (Catalan)Alfred Vallés Tortosa
Currently translated at 65.8% (699 of 1061 strings)
2019-04-13I18N: Regenerate translations data fileThierry Crozat
2019-04-13I18N: Update translation (Greek)Antoniou Athanasios
Currently translated at 100.0% (1061 of 1061 strings)
2019-04-13I18N: Regenerate translations data fileThierry Crozat
2019-04-13COMMON: Use a prefix table to speed up the Huffman decoderBastien Bouclet
Symbols for codes shorter than the prefix table index width are stored in the table. All the entries in the table with an index starting with the code are set to the symbol value. That way, when decoding it is possible to get the number of bits corresponding to the table width from the bitstream and directly find the symbol value. Longer code still need to be searched for in the codes list.
2019-04-13COMMON: Rework the BitStream class to improve its performanceBastien Bouclet
* Fixed peekBits not to seek the underlying stream. Seeking can be slow when the stream is a file. * Changed multi-bit operations to work on multiple bits at once rather than iterating over single-bit operations. This is an almost direct port of a patch for xoreos provided by DrMcCoy.
2019-04-12ANDROID: Factor event pushing into pushEventCameron Cawley
Originally from ResidualVM.
2019-04-12ANDROID: Move event types to a separate fileCameron Cawley
Originally from ResidualVM.
2019-04-12BLADERUNNER: Fix McCoy's fake voice with DektoraThanasis Antoniou
Also a fix for a closeArchive() warning about A.TLK not being open
2019-04-12GUI: Remove transparency from Remastered theme logoMatan Bareket
This fixes ticket #10932
2019-04-12TESTS: Reduce error for double precision math testThierry Crozat
If we want to properly test the computation is in double precision, we should be using a much smaller error than the one used for the single precision tests.
2019-04-11TESTS: Use relative difference for math testsDavid Fioramonti
Also add double template variants and use already defined delta assert macro.
2019-04-11TESTS: further reduce precision for math testsDavid Fioramonti
Since the math is doing subtraction on numbers around 360 and single precision has about ~7 decimal digits of accuracy we can only compare numbers to 360.0001 to be safe i'll use 1e-3.