aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-05-05TONY: Fixed some more Valgrind identified memory leaksPaul Gilbert
2012-05-05TONY: Fix some Valgrind identified memory leaksPaul Gilbert
2012-05-05TONY: Fixed some memory leaks identified by ValgrindPaul Gilbert
2012-05-05TONY: Fixed some more Valgrid identified errorsPaul Gilbert
2012-05-05TONY: More corrections for font initislisationsPaul Gilbert
2012-05-05TONY: Correct some more chararcter array initialisationsPaul Gilbert
2012-05-05TONY: Correct some initialisation of the character arraysPaul Gilbert
2012-05-05TONY: Fix some Valgrind identified warningsPaul Gilbert
2012-05-05TONY: A few more compiler warning fixesPaul Gilbert
2012-05-05TONY: Added accidentally cut linePaul Gilbert
2012-05-05TONY: Initial fixes for some of the Valgrind reported errorsPaul Gilbert
2012-05-04TONY: Fix Valgrind identified leaks in memory allocator and dialog parsingPaul Gilbert
2012-05-04TONY: Fix some inconsistent allocation/deallocationsPaul Gilbert
2012-05-04TONY: Fix warnings about return values not being usedPaul Gilbert
2012-05-04TONY: Further bugfixes for gcc warningsPaul Gilbert
2012-05-04TONY: Fixed many warnings identified by gccPaul Gilbert
2012-05-04TONY: Some formatting fixesPaul Gilbert
2012-05-04TONY: Fix invalid casts and remove some unused variablesPaul Gilbert
2012-05-04TONY: Converted anonymous structs to have explicit namesPaul Gilbert
2012-05-04TONY: Added virtual destructors to classes using virtual methodsPaul Gilbert
2012-05-04TONY: Implemented some missing and incorrect init codePaul Gilbert
2012-05-03TONY: Formatting fixesPaul Gilbert
2012-05-03TONY: Engine is now compiling and linking againPaul Gilbert
2012-05-03TONY: Implemented methods of sound.cpp (mostly stubbed out)Paul Gilbert
2012-05-03TONY: Implemented stubs for Input.cpp methodsPaul Gilbert
2012-05-03TONY: Added GfxCoreInline.hpp methodsPaul Gilbert
2012-05-03TONY: Implemented gfxcore.cpp methodsPaul Gilbert
2012-05-03TONY: Implemented other classes in game.cppPaul Gilbert
2012-05-03TONY: Implemented loc.cpp and font.cpp methodsPaul Gilbert
2012-05-02TONY: Implemented font.cpp methodsPaul Gilbert
2012-05-02TONY: Added code from Inventory.cppPaul Gilbert
2012-05-01TONY: Cleanup of GfxEngine, and added RMTony class methodsPaul Gilbert
2012-05-01TONY: Implemented GfxEngine codePaul Gilbert
2012-04-30TONY: More header files and functionality addedPaul Gilbert
2012-04-30TONY: Added include files for graphics engine and all dependent classesPaul Gilbert
2012-04-29TONY: Implemented RMGameBoxes class and all dependent classesPaul Gilbert
2012-04-29TONY: Remove __stdcall to make it build on LinuxTorbjörn Andersson
2012-04-29TONY: Added voice database initialisation, as well as stubs for music initPaul Gilbert
2012-04-29TONY: Added resource update managerPaul Gilbert
2012-04-29TONY: Removed deprecated lzo/stubs.o from makefilePaul Gilbert
2012-04-29TONY: LZO decompression now working correctlyPaul Gilbert
2012-04-29TONY: Further work on LZO integrationPaul Gilbert
2012-04-27TONY: Change backslash to slashTorbjörn Andersson
I assume slash works in Windows (since we use it in other engines), and I know backslash doesn't work in Linux because it failed for me.
2012-04-27TONY: Extra compilation changes and stubs so core MPAL code compilesPaul Gilbert
2012-04-26TONY: Start of work converting over MPAL sub-systemPaul Gilbert
2012-04-25TONY: Imported mpal.h file, and translated the commentsPaul Gilbert
2012-04-25TONY: Created skeleton enginePaul Gilbert
2012-04-24Add another English demo version of the Humongous Interactive Catalog.Travis Howell
2012-04-24KYRA: Fix crahes in Kyra 1-3 and LoL when EGA/CGA graphics mode is selected.Johannes Schickel
This is a regression from 86a817beb5eef248c5f5e28f18133db802a59c2e. Formerly Kyra always queried the render_mode and initializes its Screen functionality accordingly, even when the game actually only supported VGA. While in the "Edit game..." options only VGA was selectable, the global options still allowed for example EGA to be selected and thus messing up the internal state. I only check the render_mode setting for EoB 1 and 2 now, which are the only games which support the setting inside Screen.
2012-04-22GRAPHICS: Fix BMP getPalette function definition.D G Turner
The BMP decoder getPalette function definition is now identical to the other image format decoders subclassed from ImageDecoder. This also fixes a overloaded virtual warning reported by salty-horse.