Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-08-24 | ALL: Make simpleSaveNames() a MetaEngineFeature | Alexander Tkachev | |
Added it into hasFeature() of all engines which returned `true` in simpleSaveNames() before. As mentioned in #788, SCI is not always using simple names, so it doesn't have such feature now. | |||
2016-08-24 | ALL: Add MetaEngine::simpleSaveNames() | Alexander Tkachev | |
Engines with "simple" savenames would support "Run in background" in save/load dialog and gradual save slots unlocking. Other engines save/load feature would be locked until save sync is over. | |||
2016-06-17 | TONY: Safer string manipulation | Eugene Sandulenko | |
2016-06-17 | TONY: Complete class initializations | Eugene Sandulenko | |
2016-05-17 | ALL: Change main engine header guard defines to <directory>_<engine>_H | Eugene Sandulenko | |
Recently we started to use this as new semantics, although in the past we used simly <engine>_H. Now these guard defines are consistent with rest of the files which are used in the engines. | |||
2016-05-09 | TONY: Removing more redundant checks | Eugene Sandulenko | |
2016-05-04 | TONY: Remove redundant checks | Eugene Sandulenko | |
Since we have ((color & 0x1f) * 6) / 6, it cannot be > 0x1f, thus removing these checks as redundant. | |||
2016-05-04 | TONY: Fix buffer overrun | Eugene Sandulenko | |
2016-05-03 | TONY: Fix numerous memory leaks | Eugene Sandulenko | |
2016-03-05 | CONFIGURE: Introduced new engine dependency: highres | Eugene Sandulenko | |
Some backends like GCW0 do no support graphics >320x240 due to the hardware limitation (downscaling is possible but it will ruin the pixel hunting which is often part of the gameplay). Instead of manually updating the list of engines, we now introduce a new dependency. I marked all relevant engines, but some, like tinsel, require more work with putting their relevant high-res games under USE_HIGHRES define. | |||
2016-02-25 | TONY: Let listSaves return list sorted on slot numbers. | Johannes Schickel | |
2016-01-26 | TONY: Only request actual save slots in listSaves. | Johannes Schickel | |
2016-01-04 | TONY: Initialize _vdbCodec in contructor | Strangerke | |
2016-01-04 | TONY: As suggested by LordHoto, determine codec based on container signature ↵ | Strangerke | |
instead of filename | |||
2016-01-04 | TONY: Reduce variable scope, use MKTAG to check file signature | Strangerke | |
2016-01-04 | TONY: Add support to the new compressed speech containers | Strangerke | |
2016-01-03 | TONY: Fix Amiga Build by adding missing sound ifdefs | Strangerke | |
2016-01-03 | TONY: Add support for compressed music and sfx | Strangerke | |
2016-01-01 | TONY: Remove an unused variable | Strangerke | |
2016-01-01 | TONY: Fix typo in comment | Strangerke | |
2015-12-31 | TONY: Simplify some code related to LOX in RMItem::readFromStream() | Strangerke | |
2015-12-31 | TONY: Remove more dead code related to unused raw codec | Strangerke | |
2015-12-31 | TONY: As codec is always ADPCM, remove some dead code | Strangerke | |
2015-12-12 | TONY: Add detection for Tony Tough Czech "not installed" | Strangerke | |
2015-07-04 | TONY: Fix inclusion of util.h | Filippos Karapetis | |
2015-04-05 | TONY: Fix disabled ui after capturing guard on Ferris Wheel | unknown | |
2015-04-04 | TONY: Revert Italian detection entry | unknown | |
2015-04-03 | TONY: Add detection for Italian PC Magazine version | unknown | |
2014-10-28 | TONY: Remove trailing whitespace | Filippos Karapetis | |
2014-10-28 | TONY: Fix image loading on BE systems again | Filippos Karapetis | |
This was originally changed in commit 43520ce4f3, but it has been removed accidentally in commit 84fb3e816d | |||
2014-06-17 | TONY: Switch to 565 screen format. | Alyssa Milburn | |
The old (555) screen format is not supported by some backends. This leaves the savegame thumbnails as 555 (for compatibility). | |||
2014-05-27 | ALL: Make Debugger command function names conform to our guidelines. | Johannes Schickel | |
2014-05-27 | ALL: Rename Debugger::DCmd_Register to Debugger::registerCmd. | Johannes Schickel | |
2014-05-27 | ALL: Rename Debugger::DebugPrintf to Debugger::debugPrintf. | Johannes Schickel | |
2014-05-19 | TONY: Add missing Russian detection entry. | D G Turner | |
This should fix bug #6589 "TONY: Russian version not detected". | |||
2014-03-10 | TONY: Revert 60980e783ef263f3ed5aa708dc3032779d3be923 | Strangerke | |
2014-03-10 | TONY: Fix clang warnings - Courtesy of LordHoto | Strangerke | |
2014-03-09 | TONY: Add some missing virtual keywords | Strangerke | |
2014-03-01 | TONY: Remove unused error defines | Strangerke | |
2014-03-01 | TONY: Remove dummy defines | Strangerke | |
2014-03-01 | TONY: Remove unused function declaration in lzo | Strangerke | |
2014-03-01 | TONY: Indent code properly in lzo | Strangerke | |
2014-03-01 | TONY: Remove dead code in lzo | Strangerke | |
2014-02-28 | TONY: Reduce the scope of more variables | Strangerke | |
2014-02-28 | TONY: Fix some British comments | Strangerke | |
2014-02-28 | TONY: Reduce the scope of some more variables | Strangerke | |
2014-02-28 | TONY: Reduce the scope of some variables, change the return type of findPath() | Strangerke | |
2014-02-18 | TONY: Make GPL headers consistent in themselves. | Johannes Schickel | |
2014-02-17 | TONY: Indent REGISTER_PLUGIN_* for consistency. | Johannes Schickel | |
2014-01-17 | Merge pull request #417 from digitall/STACK_fixes | Johannes Schickel | |
ALL: Fix optimization unstable code on checking for null after new. |