Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-18 | KYRA: Make GPL headers consistent in themselves. | Johannes Schickel | |
2014-02-05 | KYRA: Fix scrolling credits in HoF. | Johannes Schickel | |
2013-05-02 | COMMON: Change kPlatformPC to kPlatformDOS | Matthew Hoops | |
"PC" was very ambiguous and now it matches what we show in the GUI. This also corrects sword2's platform to Windows. | |||
2013-05-01 | KYRA: Fix loading from the Kyrandia 2 title menu | Torbjörn Andersson | |
2013-04-18 | KYRA: (HOF) - fix possible null ptr dereference in sequences_hof.cpp | athrxx | |
2013-04-18 | KYRA: (HOF) - fix possible out of bounds array access | athrxx | |
2013-04-14 | KYRA: fix bug #3610247 | athrxx | |
(KYRA2: Intro doesn't skip righ/Game won't start on first run) | |||
2013-01-09 | KYRA: 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-19 | KYRA: 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-19 | KYRA: Make more static data tables const. | Johannes Schickel | |
2012-11-11 | KYRA: fix several GCC compile issues in previous commits | athrxx | |
2012-11-11 | KYRA: clean up audio resource handling | athrxx | |
(this was really ugly, now it's somewhat less ugly) | |||
2012-11-11 | KYRA: finish implementation of new HOF sequence player code | athrxx | |
2012-11-11 | KYRA: move HOF sequence player into its own class | athrxx | |
(also cleaning up and fixing things while doing that) | |||
2012-03-13 | JANITORIAL: Replace (x ? false : true) by !(x). | Christoph Mallon | |
2012-01-08 | KYRA: fix regression in non-playable HOF demo | athrxx | |
(missing animated items) | |||
2012-01-08 | KYRA: Cleanup v2 item animation a little bit. | Johannes Schickel | |
2011-12-13 | KYRA: 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-07 | JANITORIAL: Remove trailing empty lines. | Christoph Mallon | |
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-04-28 | KYRA: Fix compilation when LoL is disabled. | Johannes Schickel | |
2011-04-28 | KYRA: Clean up of header includes. | Johannes Schickel | |
2011-03-29 | JANITORIAL: Remove/comment unused vars | dhewg | |
Found by GCC 4.6's -Wunused-but-set-variable | |||
2011-01-29 | KYRA: Hopefully fix valgrind warnings in the HoF intro when text is disabled. | Johannes Schickel | |
svn-id: r55623 | |||
2010-10-23 | ALL: Fix indention (whitespaces -> tabs) | Max Horn | |
svn-id: r53738 | |||
2010-05-17 | Some more enforcement of our formatting conventions in KYRA too. | Johannes Schickel | |
svn-id: r49069 | |||
2010-05-01 | KYRA: fixed some cppcheck warnings | Florian Kagerer | |
svn-id: r48879 | |||
2010-01-29 | Fix use of undefined behavior. (Thanks to syke for reporting) | Johannes Schickel | |
svn-id: r47685 | |||
2010-01-25 | Strip trailing spaces/tabs. | Johannes Schickel | |
svn-id: r47541 | |||
2009-11-29 | Cleanup. | Johannes Schickel | |
svn-id: r46194 | |||
2009-11-21 | More cleanup. | Johannes Schickel | |
svn-id: r46055 | |||
2009-11-21 | Cleanup. | Johannes Schickel | |
svn-id: r46054 | |||
2009-10-06 | KYRA/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-04 | Change a couple places from 'end of namespace' to 'End of namespace', for ↵ | Max Horn | |
consistency svn-id: r44634 | |||
2009-07-07 | Change all uses of FM-Towns/fm-towns to FM-TOWNS. | Johannes Schickel | |
svn-id: r42235 | |||
2009-06-29 | Adapted various code parts to use Palette::fill. | Johannes Schickel | |
svn-id: r41953 | |||
2009-06-25 | Change Screen_v2::findLeastDifferentColor to take a Palette object as source. | Johannes Schickel | |
svn-id: r41886 | |||
2009-06-25 | Change Screen_HoF::generateGrayOverlay to accept a Palette object as source. | Johannes Schickel | |
svn-id: r41885 | |||
2009-06-22 | Changed Screen::loadPalette to take a reference to a Palette object instead ↵ | Johannes Schickel | |
of an array. svn-id: r41745 | |||
2009-06-22 | Changed 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-22 | Add wrapper functionality for copying full palettes. | Johannes Schickel | |
svn-id: r41742 | |||
2009-06-22 | Changed Screen::getPalette to return a reference to a Palette object. | Johannes Schickel | |
svn-id: r41741 | |||
2009-06-22 | Got rid of Screen::_currentPalette. | Johannes Schickel | |
svn-id: r41740 | |||
2009-06-09 | - Moved Screen_v2::copyWsaRect to Screen::copyWsaRect | Johannes 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-29 | More formatting. | Johannes Schickel | |
svn-id: r40994 | |||
2009-05-29 | Formatting. | Johannes Schickel | |
svn-id: r40991 | |||
2009-05-24 | Cleanup. | Johannes Schickel | |
svn-id: r40850 | |||
2009-05-24 | Make 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-21 | Remove trailing tabs/whitespaces. | Johannes Schickel | |
svn-id: r40760 |