aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
AgeCommit message (Collapse)Author
2013-04-18KYRA: (EOB) - silence warning about improper use of negative value in ↵athrxx
gui_eob.cpp
2013-04-18KYRA: (EOB) - fix possible null ptr dereference in gui_eob.cppathrxx
2013-04-18KYRA: (LOL) - add comment in gui_lol.cppathrxx
2013-04-18KYRA: (LOL) - add assert in items_lol.cpp (should silence warning about ↵athrxx
possible out of bounds access)
2013-04-18KYRA: (LOL) - fix warning about possible out of bounds access in lol.cppathrxx
2013-04-18KYRA: (EOB) - remove unused variable in scene_eob.cppathrxx
2013-04-18KYRA: (LOL) - fix possible null ptr dereference in scene_lol.cppathrxx
2013-04-18KYRA: (EOB) - remove dead code in screen_eob.cppathrxx
2013-04-18KYRA: (HOF) - fix possible null ptr dereference in sequences_hof.cppathrxx
2013-04-18KYRA: (HOF) - fix possible out of bounds array accessathrxx
2013-04-18KYRA: (EOB) - add assert in sprites_eob.cpp (might fix warning about ↵athrxx
possible null ptr deref)
2013-04-18KYRA: (EOB) - fix potential null ptr dereference in sprites_eob.cppathrxx
2013-04-18KYRA: (EOB) - fix warning (Logically dead code) in sprites_eob.cppathrxx
2013-04-18KYRA: (LOL) - fix warning (Unused pointer value) in sprites_lol.cppathrxx
2013-04-18KYRA: (LOL) - add comment in sprites_lol.cppathrxx
2013-04-18KYRA: (EOB) - add comment in timer_eob.cppathrxx
2013-04-14KYRA: fix bug #3610247athrxx
(KYRA2: Intro doesn't skip righ/Game won't start on first run)
2013-04-14KYRA: (EOB) - add debug function to export save files in original formatathrxx
2013-04-14KYRA: (EOB) - fix bug #3600348athrxx
(EOB1: Crash when moving in German version)
2013-04-07KYRA: Don't restore music volume right after it has faded downTorbjörn Andersson
Since the music volume is set in playTrack(), it shouldn't be necessary to set it back to the default level when a fade out has been completed. This change prevents the volume from spiking right before quitting the game. I hope it doesn't cause regressions.
2013-03-29KYRA: Add detection entry for LOL french v1.20 (extracted) datafiles.D G Turner
This is from bug #3608967 - "Lands of Lore - french version 1.20 MD5".
2013-02-23ALL: Fix typo (existant->existent)Willem Jan Palenstijn
2013-01-26Merge pull request #301 from lordhoto/c++11-playgroundJohannes Schickel
RFC: Allow use of override and nullptr. Also allow C++11 compilation.
2013-01-10KYRA: (LOL) - fix warningathrxx
2013-01-09KYRA: (LOL) - remove unneeded static dataathrxx
2013-01-09KYRA: (LOL/FM-TOWNS) - add keyboard controlsathrxx
2013-01-09KYRA: (LOL/FM-TOWNS) - fix sjis text position for button labelsathrxx
2013-01-09KYRA: (LOL/FM-TOWNS) - adapt text displayerathrxx
2013-01-09KYRA: (LOL/FM-TOWNS) - adjust sjis font settings, spacing, etc.athrxx
2013-01-09KYRA: (LOL/FM-TOWNS) some startup codeathrxx
(let the FM-Towns version load up and run without errors/crashes)
2013-01-09KYRA: (LOL/FM-TOWNS) - adapt static resourcesathrxx
2013-01-09KYRA: (LOL/FM-TOWNS) - add detection entryathrxx
2013-01-09KYRA: Use override in subclasses of Sound, which override voicePlay.Johannes Schickel
2013-01-09KYRA: Get rid of some unnecessary overwrites.Johannes Schickel
2013-01-09KYRA: Mark overloaded methods of Sound subclasses as virtual.Johannes Schickel
2013-01-09KYRA: Make all hex constants use uppercase letters.Johannes Schickel
Done with: git ls-files "*.cpp" *".h" | xargs sed -i -e 's/0x\([0-9a-f]*\)/0x\U\1/g'
2013-01-09KYRA: Fix voicePlay overwrite in PC98 and Amiga sound outputs.Johannes Schickel
This was forgotten to adapt in e016e7dfc2b1e3cdb39c01d81c5a34eee66a277b.
2012-12-17KYRA: (EOB) - fix bug #3596548 ("Crash when using Mage Spells such as Magic ↵athrxx
Missile")
2012-11-30KYRA: Allow user to cancel saving in EoB via ESC.Johannes Schickel
2012-11-30KYRA: Change loop variable to uint, rather than size_t.D G Turner
2012-11-24KYRA: fix bug #3589442 (LOL Floppy - No speech during intro)athrxx
2012-11-23KYRA: Some slight cleanup.Johannes Schickel
2012-11-23KYRA: Fix bug #3589441 "KYRA: LOL DOS is broken".Johannes Schickel
In fact it affected all DOS versions of the game. This is a regression from 93e69aa4da0558b05fc235684355ed38eed9863d.
2012-11-23KYRA: Remove unnecessary forward declaration.Johannes Schickel
2012-11-23KYRA: Move SoundDigital declaration to its own header.Johannes Schickel
2012-11-23KYRA: Rename kReadSaveHeaderError to ReadSaveHeaderError.Johannes Schickel
2012-11-23KYRA: Get rid of pointless SoundDigital::init method.Johannes Schickel
2012-11-23KYRA: Make Sound::hasSoundFile const again.Johannes Schickel
2012-11-23KYRA: Properly mark digital sfx as sfx in HoF and LoL again.Johannes Schickel
This is a regression from e016e7dfc2b1e3cdb39c01d81c5a34eee66a277b.
2012-11-19KYRA: Make "const type *const" use consistent.Johannes Schickel
I used this command for changing "const type * const" to "const type *const": git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/const \([a-zA-Z0-9_]*\) \* const/const \1 \*const/g'