Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-07-10 | Mention the Gob savegame format change and change the version from 0.14.0 to ↵ | Sven Hesse | |
1.0.0 there too svn-id: r42355 | |||
2009-07-10 | Fixing mismatched delete | Sven Hesse | |
svn-id: r42354 | |||
2009-07-10 | This is 1.0.0svn | Eugene Sandulenko | |
svn-id: r42346 | |||
2009-07-10 | Applied patch #2819665 - "SCI: cell palette fix for QfG3/SQ5/etc." | Filippos Karapetis | |
svn-id: r42345 | |||
2009-07-10 | Mention cruise support | Eugene Sandulenko | |
svn-id: r42328 | |||
2009-07-10 | Changed the status of the Tinsel engine to be enabled by default | Paul Gilbert | |
svn-id: r42322 | |||
2009-07-09 | Oops specify the correct revsision number in the fixme. | Johannes Schickel | |
svn-id: r42306 | |||
2009-07-09 | Add fixme about SCI32 specific code. | Johannes Schickel | |
svn-id: r42305 | |||
2009-07-09 | By comparing the commit log of r42300, it seems that "off" was renamed to ↵ | Johannes Schickel | |
"lastDirectoryOffset". I changed the SCI32 specific code to use that now. I can't assure this is anyhow correct, so anyone with knowledge of this code please check it. svn-id: r42303 | |||
2009-07-09 | Fix wrong format arugment. | Johannes Schickel | |
svn-id: r42301 | |||
2009-07-09 | Applied patch #2818845 - "SCI: resource.map detection for SCI1/1.1 fixed", ↵ | Filippos Karapetis | |
with some slight formatting changes svn-id: r42300 | |||
2009-07-09 | restAdjust should be a signed integer. Fixes crashes with SCI1 games that ↵ | Filippos Karapetis | |
take absolute lofs parameters (a regression of commit #42260) svn-id: r42297 | |||
2009-07-09 | Cleanup rollDice (the results of the old and the new function are almost ↵ | Johannes Schickel | |
identical). svn-id: r42293 | |||
2009-07-09 | Cleanup. | Johannes Schickel | |
svn-id: r42292 | |||
2009-07-09 | Added proper safeguards for shorten.*, thereby fixing commit 42259 | Filippos Karapetis | |
svn-id: r42290 | |||
2009-07-09 | Reverted commit #42257, as the original issue was with the compilation ↵ | Filippos Karapetis | |
process of MSVC and the ENABLE_* checks work correctly svn-id: r42289 | |||
2009-07-09 | - Rewrote and greatly simplified the MSVC8 and MSVC9 project files so that ↵ | Filippos Karapetis | |
they use common compilation properties, based on patch #2774908. These common properties make it much simpler to change options and compilation defines globally, similar to how GCC *.mk files do. Also, this fixes problems where an ENABLE_* define was set for one project file but not another (like the situation in revisions 42257 and 42259). It's now much easier to construct a tool which will create the project files dynamically. - Dropped support for MSVC7 and MSVC7.1 for now (as they don't support common compilation properties and it's no longer easy to construct them from the MSVC8 ones) - hopefully, they will return in the future, once we got a more sophisticated tool to create them - Simplified the MSVC9 <-> MSVC8 conversion tools a bit svn-id: r42288 | |||
2009-07-09 | Renamed sound/iff.* to sound/iff_sound.* to fix an issue with the upcoming ↵ | Filippos Karapetis | |
changes to the MSVC project files (sound/iff.* produces iff.obj, which clashes with iff.obj from graphics/iff.*) svn-id: r42287 | |||
2009-07-09 | Warn instead of crash when a video frame part was found although the header ↵ | Sven Hesse | |
says there's no video svn-id: r42286 | |||
2009-07-09 | Changed the status of the cruise engine to be enabled by default | Paul Gilbert | |
svn-id: r42278 | |||
2009-07-09 | Giving Font its own real class | Sven Hesse | |
svn-id: r42277 | |||
2009-07-08 | LOL: cleanup | Florian Kagerer | |
svn-id: r42271 | |||
2009-07-08 | LOL: rename new function in last commit according to LordHoto's suggestion | Florian Kagerer | |
svn-id: r42270 | |||
2009-07-08 | LOL: fix long standing bugs in the battle system (hit chance, damage, etc) ↵ | Florian Kagerer | |
by adapting original style random number generator svn-id: r42269 | |||
2009-07-08 | - Moved printObject inside the Console class | Filippos Karapetis | |
- Enabled the parts where disassemble() is called svn-id: r42263 | |||
2009-07-08 | Only the kernel needs to be initialized before anything else, when ↵ | Filippos Karapetis | |
saving/loading svn-id: r42262 | |||
2009-07-08 | Fixed saving/loading again (broken with the latest changes for game feature ↵ | Filippos Karapetis | |
auto-detection) svn-id: r42261 | |||
2009-07-08 | Some cleanup for the script debugger code: | Filippos Karapetis | |
- Renamed struct DebugState to ScriptState and r_amp_rest to restAdjust inside EngineState. Changed restAdjust to be a uint16 (actually it is a uint16, but it was being casted back and forth from an unsigned integer, so this clears up its type and size) - Moved the script state variables from inside the run_vm() into the ScriptState struct, so that they can be accessed by the console commands and the script debugger all the time, and removed the weird isValid code svn-id: r42260 | |||
2009-07-08 | Added guards to only include the Shorten audio code when the SAGA2 code in ↵ | Filippos Karapetis | |
the SAGA engine is enabled svn-id: r42259 | |||
2009-07-08 | Also added the ENABLE_IHNM and ENABLE_SAGA2 preprocessor definitions to the ↵ | Filippos Karapetis | |
scummvm project files, not only the saga project files svn-id: r42258 | |||
2009-07-08 | The ENABLE_* flags are only checked for *.cpp files in MSVC, so move the ↵ | Filippos Karapetis | |
ENABLE_* checks to sjis.cpp to fix compilation under MSVC svn-id: r42257 | |||
2009-07-08 | Updated the MSVC project files of the scummvm project (added graphics/sjis.*) | Filippos Karapetis | |
svn-id: r42256 | |||
2009-07-08 | Synced the MSVC project files of the gob engine | Filippos Karapetis | |
svn-id: r42255 | |||
2009-07-08 | Fix recent regression in vc61(). | Travis Howell | |
svn-id: r42252 | |||
2009-07-07 | Silenced the very chatty song iterator console messages by converting them ↵ | Filippos Karapetis | |
to appropriate debug messages svn-id: r42240 | |||
2009-07-07 | Improved the LSL1VGA workaround after talking with waltervn | Filippos Karapetis | |
svn-id: r42239 | |||
2009-07-07 | Added a workaround for incorrect font references in LSL1VGA (which was the ↵ | Filippos Karapetis | |
original purpose of the code removed in rev. 42219) svn-id: r42238 | |||
2009-07-07 | Change all uses of FM-Towns/fm-towns to FM-TOWNS. | Johannes Schickel | |
svn-id: r42235 | |||
2009-07-07 | Simply compile guard of SJIS code and fix comment. | Johannes Schickel | |
svn-id: r42234 | |||
2009-07-07 | Add guards to only include SJIS font code, when KYRA or SCI is enabled. | Johannes Schickel | |
svn-id: r42233 | |||
2009-07-07 | Change "FM-Towns" to "FM-TOWNS" for consistency. | Johannes Schickel | |
svn-id: r42232 | |||
2009-07-07 | - Rename FontSJIS::enableShadow to enableOutline. | Johannes Schickel | |
- Initialize outline to false by default in FontTowns. svn-id: r42231 | |||
2009-07-07 | - Added support for outlined FM-Towns ROM drawing | Johannes Schickel | |
- Adapted KYRA to use that svn-id: r42230 | |||
2009-07-07 | kFeatures800 -> kFeatures800x600 in order to have more meaningful name | Eugene Sandulenko | |
svn-id: r42229 | |||
2009-07-07 | Adapt KYRA to use the new Graphics::FontSJIS code. | Johannes Schickel | |
svn-id: r42222 | |||
2009-07-07 | Add generic functionallity to draw FM-Towns ROM. (To be used by KYRA and SCI) | Johannes Schickel | |
svn-id: r42221 | |||
2009-07-07 | Removed the weird checks for a maximum resource number (the ↵ | Filippos Karapetis | |
sci_max_resource_nr array), as it doesn't serve any real purpose and leads to strange errors: if a resource is found which is bigger than the maximum number, it will be remapped to an incorrect number from this check. This makes KQ5CD work properly again (resources would be remapped to incorrect resource numbers from this code as a result of not updating this array with the latest SCI version merges). svn-id: r42219 | |||
2009-07-07 | Change SaveLoad_Playtoons case | Arnaud Boutonné | |
svn-id: r42217 | |||
2009-07-07 | Removed the superfluous sci_version_types array (it's essentially the same ↵ | Filippos Karapetis | |
as the versionNames array) svn-id: r42216 | |||
2009-07-07 | - Add a new gametype for 'The Land of the Magic Stones' | Arnaud Boutonné | |
- Add detection of the french version - Add a new game feature for 800*600 svn-id: r42215 |