aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-10-21Cleanup.Johannes Schickel
svn-id: r34831
2008-10-20Formatting.Johannes Schickel
svn-id: r34830
2008-10-20Fix - at least partially - the list of savegames for the launcher's load dialog.Torbjörn Andersson
But I suspect there are still bugs lurking in that code. I really dislike how Broken Sword 1 handles savegames... svn-id: r34829
2008-10-20I believe this fixes bug #2162345 ("BS1: Can't overwrite savegame"), but I'dTorbjörn Andersson
really appreciate it if someone would test it further, in case I missed something. (Broken Sword 1 stores the names of the savegames in a separate file, and that has to be in sync with the individual savegame files. In my experience, that sort of thing can really attract bugs...) svn-id: r34828
2008-10-19Code formatting fixesMax Horn
svn-id: r34827
2008-10-19Cleanup (Removed an extra 'return 0').Kari Salminen
svn-id: r34826
2008-10-18Fixed: Assert when parsing a corrupted Theme archive (now discarding the ↵Vicent Marti
theme silently as non-valid). svn-id: r34825
2008-10-18Simplify DXAPlayer::decodeZlib, and use common/zlib.h instead of system's zlib.hMax Horn
svn-id: r34824
2008-10-18Implemented visual effects 1, 3, 4, 5, 6, 7 and 16Benjamin Haisch
svn-id: r34823
2008-10-18Fixed warning.Torbjörn Andersson
svn-id: r34822
2008-10-18Add game.cpp to makefileLars Persson
svn-id: r34821
2008-10-18Need a differentiating zlib.h filename for SymbianOS.Lars Persson
svn-id: r34820
2008-10-18Rewrote XMLParser error() function for the 5th time.Vicent Marti
Bugfix: Ambiguous error message when parsing an unexpected header. svn-id: r34819
2008-10-18Fixed: Default theme had several XML headers.Vicent Marti
svn-id: r34818
2008-10-18Changed XML Parser to require standards-compilant XML header.Vicent Marti
Updated STX version to 0.3 svn-id: r34817
2008-10-18Fixed: Invisible debugger console text in Classic theme.Vicent Marti
svn-id: r34816
2008-10-18ImageManager: Added support for generic archives (zips and folders).Vicent Marti
Theme Font Loading: Added support for generic archives. ThemeEngine: Removed dependency on Common::File and File::AddDefaultPath for image and font loading. svn-id: r34815
2008-10-18Fixed: "GUI: Crash in Debugger" (ID: 2169419)Vicent Marti
svn-id: r34814
2008-10-16OSYSTEM: Pushed out some port specific code from common/system.cpp to the ↵Max Horn
respective ports svn-id: r34812
2008-10-15Changed XMLParser comment syntax to conform to XML standards (<!-- * -->)Vicent Marti
Changed STX version string to 0.2. svn-id: r34807
2008-10-15Fixed: Game version selection menu (Bugs 2167730 and 2164305).Vicent Marti
svn-id: r34806
2008-10-14Fixed: Freddi 1/2 ingame menu crash (BUG 2167027).Vicent Marti
Was: Crash when refreshing the screen with no open dialogs. svn-id: r34805
2008-10-14Another tweak to HE: Use SearchMan.openFile instead of a raw FSNodeMax Horn
svn-id: r34804
2008-10-14Greatly improved XML Parser error messages.Vicent Marti
svn-id: r34803
2008-10-14Added "Mass Add" dialog.Vicent Marti
svn-id: r34802
2008-10-14Fixed: Parser crash when adding an XML layout with an unhandled type.Vicent Marti
svn-id: r34801
2008-10-14Crash ScummVM when a widget definition cannot be found in the XML file and ↵Vicent Marti
show a descriptive error. svn-id: r34800
2008-10-13Patch #2131406: AGI: Fix Crash with Apple][ Instruments.Kari Salminen
Applied the patch as it is, thanks clone2727. Now Apple IIGS AGI games don't crash anymore if the instruments (They're in *.SYS16) or the instrument samples (They're in SIERRASTANDARD) aren't found. svn-id: r34798
2008-10-13Fixed crash after using cutscene subtitles. (Now I *know* no one has used thatTorbjörn Andersson
feature before. :-) svn-id: r34796
2008-10-13Removed SearchManager::addArchive, since SearchManager::add offers the same ↵Johannes Schickel
functionallity. svn-id: r34795
2008-10-13OSYSTEM: Removed unused getExtraThemeConfig() method (TODO: Implement a new ↵Max Horn
system which allows ports to add/remove stuff from the options dialogs) svn-id: r34794
2008-10-13Fix for bug #2162342: FREDDI1: Game does not startMax Horn
svn-id: r34793
2008-10-13Fixed: Ingame debug console in all games.Vicent Marti
svn-id: r34792
2008-10-13- fix installer file support for Kyra 2 and 3Florian Kagerer
- fix bug in pc98 audio driver svn-id: r34791
2008-10-13Use the save file manager's listSavefiles() function to find out if any ↵Torbjörn Andersson
savegames exist at all. (The old method was to potentially try and open a hundred files, though it would stop after finding the first one.) svn-id: r34790
2008-10-12Merged ThemeEngine::themeEval() and ThemeEngine::evaluator() methods into a ↵Max Horn
single getEvaluator() method svn-id: r34789
2008-10-12Removing dead codeMax Horn
svn-id: r34788
2008-10-12Increased maximum subtitle line length for SimSaw. That code really should beTorbjörn Andersson
made more robust some day, but until now I don't think anyone actually used it. svn-id: r34787
2008-10-12Don't call Common::List::size() if you don't have to (it's an expensive ↵Max Horn
operation, which has to iterate the whole List, while empty() works in constant time) svn-id: r34786
2008-10-12COMMON: Added a new ObjectPool class, with matching operator new/delete ↵Max Horn
overloads svn-id: r34785
2008-10-12Fixed some more bad inline Doxygen comments (if you omit the '<', Doxygen ↵Max Horn
thinks you are actually documenting the code in the *next* line) svn-id: r34784
2008-10-12Don't force inline on big funcs if you don't have to (in this case, it added ↵Max Horn
24k to the binary size for no good reason) svn-id: r34783
2008-10-12cleanupMax Horn
svn-id: r34782
2008-10-12Fix some in-line doxygen comments to document the correct member(s); also ↵Max Horn
fixed some typos svn-id: r34781
2008-10-12Fix warningMax Horn
svn-id: r34780
2008-10-12Changed Common::Rect doxygen comments to the (Java) style we use elsewhereMax Horn
svn-id: r34779
2008-10-12The MSVC8 -> MSVC 7/7.1 conversion tool now handles both cases of version ↵Filippos Karapetis
numbers (with . and ,) - depending on the system's localization settings. Updated the scummvm.vcproj files Fixes bug #2159813 - "BUILD: scummvm.vcproj fails to build in msvc7/msvc71" svn-id: r34778
2008-10-12Changed BRA to use the new Common:Archive infrastructure.Nicola Mettifogo
svn-id: r34777
2008-10-12* Added prefix support to cache entries of FSDirectory, as specified in ↵Nicola Mettifogo
patch #2034983. * Updated comments on most Archive-related classes. svn-id: r34776
2008-10-11Fixed yet another typoMax Horn
svn-id: r34775