aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra/sequences_hof.cpp
AgeCommit message (Collapse)Author
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-14KYRA: fix bug #3610247athrxx
(KYRA2: Intro doesn't skip righ/Game won't start on first run)
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'
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'
2012-11-19KYRA: Make more static data tables const.Johannes Schickel
2012-11-11KYRA: fix several GCC compile issues in previous commitsathrxx
2012-11-11KYRA: clean up audio resource handlingathrxx
(this was really ugly, now it's somewhat less ugly)
2012-11-11KYRA: finish implementation of new HOF sequence player codeathrxx
2012-11-11KYRA: move HOF sequence player into its own classathrxx
(also cleaning up and fixing things while doing that)
2012-03-13JANITORIAL: Replace (x ? false : true) by !(x).Christoph Mallon
2012-01-08KYRA: fix regression in non-playable HOF demoathrxx
(missing animated items)
2012-01-08KYRA: Cleanup v2 item animation a little bit.Johannes Schickel
2011-12-13KYRA: Cast char to uint8 before passing it to getCharWidth.Johannes Schickel
This assures getCharWidth really gets the character number and now sign extended version of it in case char is signed.
2011-08-07JANITORIAL: Remove trailing empty lines.Christoph Mallon
2011-05-12GIT: Clean up: Suppress SVN tags, now uselessstrangerke
2011-04-28KYRA: Fix compilation when LoL is disabled.Johannes Schickel
2011-04-28KYRA: Clean up of header includes.Johannes Schickel
2011-03-29JANITORIAL: Remove/comment unused varsdhewg
Found by GCC 4.6's -Wunused-but-set-variable
2011-01-29KYRA: Hopefully fix valgrind warnings in the HoF intro when text is disabled.Johannes Schickel
svn-id: r55623
2010-10-23ALL: Fix indention (whitespaces -> tabs)Max Horn
svn-id: r53738
2010-05-17Some more enforcement of our formatting conventions in KYRA too.Johannes Schickel
svn-id: r49069
2010-05-01KYRA: fixed some cppcheck warningsFlorian Kagerer
svn-id: r48879
2010-01-29Fix use of undefined behavior. (Thanks to syke for reporting)Johannes Schickel
svn-id: r47685
2010-01-25Strip trailing spaces/tabs.Johannes Schickel
svn-id: r47541
2009-11-29Cleanup.Johannes Schickel
svn-id: r46194
2009-11-21More cleanup.Johannes Schickel
svn-id: r46055
2009-11-21Cleanup.Johannes Schickel
svn-id: r46054
2009-10-06KYRA/LOL: - get rid of ascii/sjis detection which could cause problems when ↵Florian Kagerer
typing savegame names - fixed some minor bugs svn-id: r44709
2009-10-04Change a couple places from 'end of namespace' to 'End of namespace', for ↵Max Horn
consistency svn-id: r44634
2009-07-07Change all uses of FM-Towns/fm-towns to FM-TOWNS.Johannes Schickel
svn-id: r42235
2009-06-29Adapted various code parts to use Palette::fill.Johannes Schickel
svn-id: r41953
2009-06-25Change Screen_v2::findLeastDifferentColor to take a Palette object as source.Johannes Schickel
svn-id: r41886
2009-06-25Change Screen_HoF::generateGrayOverlay to accept a Palette object as source.Johannes Schickel
svn-id: r41885
2009-06-22Changed Screen::loadPalette to take a reference to a Palette object instead ↵Johannes Schickel
of an array. svn-id: r41745
2009-06-22Changed Screen::loadBitmap and Movie::open to take an optional Palette ↵Johannes Schickel
pointer instead of an optional array pointer. svn-id: r41744
2009-06-22- Changed the following Screen functions to take a reference to a Palette ↵Johannes Schickel
object: -> setScreenPalette -> fadePalette -> getFadeParams -> fadePalStep - Fixed initialization of 256 color palettes svn-id: r41743
2009-06-22Add wrapper functionality for copying full palettes.Johannes Schickel
svn-id: r41742
2009-06-22Changed Screen::getPalette to return a reference to a Palette object.Johannes Schickel
svn-id: r41741
2009-06-22Got rid of Screen::_currentPalette.Johannes Schickel
svn-id: r41740
2009-06-09- Moved Screen_v2::copyWsaRect to Screen::copyWsaRectJohannes Schickel
- Made WSAMovie_v1::displayFrame code match the original - Changed WSAMovieAmiga::displayFrame to use Screen::copyWsaRect too - Got rid of '...' parameter usage in all WSA player classes svn-id: r41398
2009-05-29More formatting.Johannes Schickel
svn-id: r40994
2009-05-29Formatting.Johannes Schickel
svn-id: r40991
2009-05-24Cleanup.Johannes Schickel
svn-id: r40850
2009-05-24Make various Sound functionality SoundHandle instead of filename based.Johannes Schickel
- This fixes multiple sounds being played at once in Lands of Lore svn-id: r40848
2009-05-21Remove trailing tabs/whitespaces.Johannes Schickel
svn-id: r40760
2009-05-19Formatting.Johannes Schickel
svn-id: r40717
2009-05-19Remov lots of superfluous debug output.Johannes Schickel
svn-id: r40715
2009-05-10LOL: - added some spell casting (spark, heal, swarm)Florian Kagerer
- fixed several bugs (not the one in the fighting system though) - added several opcodes. there shouldn't be any real show stoppers in the draracle cave now. - simplified wsa code (which required 4 lines of code for displaying a frame) - added support for wsa animations that don't have a last frame (apparently kyra 2 and 3 don't have this type of wsa file) svn-id: r40420
2009-04-29More formatting.Johannes Schickel
svn-id: r40203