aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/gui
AgeCommit message (Collapse)Author
2019-12-20KYRA: (EOB) - fix party transfer from PC-98 to other platformsathrxx
Unlike the original, ScummVM intends to allow EOB1 party transfer between any versions (Amiga->DOS or vice versa). Now, this also works from PC-98 to non-PC-98.
2019-12-20KYRA: (EOB/PC98) - fix music mute settingathrxx
(this has to be done a bit different for PC-98, since - unlike the other currently supported platforms - PC-98 has ingame music)
2019-12-18KYRA: (Amiga) - minor code reductionathrxx
(eliminate some duplicate code for dirty rect handling)
2019-12-18KYRA: (EOB/PC98) - adapt character stats page layoutathrxx
The PC98 version has as slightly different layout for the character stats page.
2019-12-18KYRA: (EOB/PC98) - fix original save file loadingathrxx
2019-12-18KYRA: (EOB/PC98) - fix preferences menuathrxx
2019-12-18KYRA: (EOB/PC98) - fix Japanese text displayathrxx
2019-12-18KYRA: (EOB/PC98) - fix level loading and some cleanupathrxx
(no block drawing yet)
2019-12-18KYRA: (EOB/PC98) - allow both graphics mode / text mode text display for ↵athrxx
sjis font The assumption till now was that PC-9801 games in 16 color mode will always use text mode for text display. However, EOB1 uses text mode for intro and ending sequence and graphics mode for ingame. Add new font variant for this and also do some cleanup, since the text displayer code really needs it. (The problem is that at least 3 different Japanese publishers did the Japanese ports for the various games and every one of them did his own hacks for his specific target.)
2019-12-18KYRA: (EOB/PC98) - fix intro and main menu screenathrxx
2019-12-16KYRA: (EOB) - fix debugger glitchesathrxx
Seems that some font glyphs that were used for the print_map command aren't present any more. I replaced them with more conventional glyphs.
2019-12-06KYRA: Fix Missing Default Switch CasesD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-10-31KYRA: (LOL) - fix item pickup glitchathrxx
This fixes an original bug that recently got my attention. While I never managed to duplicate items like the person in the video I did experience lockups. Maybe the exploit works only with the original executable... https://www.youtube.com/watch?v=fkJ2KilULco&feature=youtu.be https://www.youtube.com/watch?v=4oRESbQLDig&feature=youtu.be
2019-08-18KYRA: LOL: Fix GCC Compiler Warning from memset UsageD G Turner
The memset call to clear the Common::Event is unecessary as all fields are cleared either directly by the class constructor or for fields which are struct/class objects, by their constructors.
2019-04-15KYRA: sound files/classes reorganization step #2athrxx
This is a followup to the last commit which fixes compilation. I wanted to have the pure file renaming separately.
2019-04-13KYRA: (EOB2/Amiga) - final glitches fixathrxx
2019-04-13KYRA: (EOB2/Amiga) - fix original save file handlingathrxx
2019-04-13KYRA: (EOB2/Amiga) - fix ingame colorsathrxx
2019-04-13KYRA: (EOB2/Amiga) - fix GUI colorsathrxx
2019-03-22KYRA: silence some compiler warningsathrxx
2019-03-06KYRA: (EOB1/Amiga) - fix invisible character displayathrxx
2019-03-06KYRA: (EOB2/FM-TOWNS) - fix character status text glitchathrxx
2019-03-06KYRA: (EOB) - fix poison warningathrxx
(There should be a death warning when trying to rest the party while poisoned. This did not work correctly.)
2019-03-06KYRA: (EOB1/Amiga) - add original save file handlingathrxx
2019-03-06KYRA: (EOB) - fix possible out of bounds mem accessathrxx
(This can't happen through normal gameplay, but still better to be fixed)
2019-03-06KYRA: (EOB1/Amiga) - fix level palette glitchathrxx
2019-03-06KYRA: (EOB1/Amiga) - fix main menu load dialogathrxx
2019-03-06KYRA: (EOB1) - fix slow poison status displayathrxx
(in the character tab it would still say "poisoned" instead of "poisoned (slow)")
2019-03-06KYRA: (EOB1/Amiga) - fix level loadingathrxx
Now it is at least possible to enter the game after creating a party. Graphics are still messed up.
2019-03-06KYRA: (EOB1/Amiga) - fix chargen and gui colorsathrxx
2019-03-06KYRA: (EOB) - rename varathrxx
2019-03-06KYRA: (EOB) - minor save file export fixathrxx
(avoid out of bounds strings when importing FM-TOWNS save files)
2019-03-06KYRA: cleanup dirathrxx
Reorganize all files in sub directories. The file placement isn't as intuitive as it might be for other engines, which is probably the reason why this hasn't been done before.