aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-09-28- Renamed withVoices to _subtitlesDisabled as it reflect the true meaning.Eugene Sandulenko
- Allowed to disable subtitles from options dialogs including RTL. svn-id: r34675
2008-09-28Fix bug #2043489: DRASCULA: Cannot disable speechEugene Sandulenko
svn-id: r34674
2008-09-28Add Italian C64 ZakEugene Sandulenko
svn-id: r34672
2008-09-28Return 32000 in sfGetCdTime instead of 0; this fixes the Manhole ↵Benjamin Haisch
intro/credits (until the function is actually implemented) svn-id: r34671
2008-09-27SCUMM: Use FilesystemNode::openForReading instead of ↵Max Horn
Common::File::open(FilesystemNode) in the detector svn-id: r34664
2008-09-27Changed Common::File to use SearchManMax Horn
svn-id: r34663
2008-09-27Added a spanish floppy version of Lost in Time, as supplied by goodoldgeorg ↵Sven Hesse
in bug report #2105220 svn-id: r34661
2008-09-27Fixed a nasty bug in SearchManager::addDirectory; made the 'char' ↵Max Horn
constructor of Common::String explicit, to avoid such bugs in the future svn-id: r34660
2008-09-27Modified Common::SearchSet to take signed integer priorities, for ↵Max Horn
convenience (so that one can add archives with less-than-default priority) svn-id: r34659
2008-09-27Slight simplification of last commit.Torbjörn Andersson
svn-id: r34658
2008-09-27Allow quitting or returning to the launcher while cutscenes are playing.Torbjörn Andersson
svn-id: r34657
2008-09-27Fixed typos.Torbjörn Andersson
svn-id: r34656
2008-09-25cleanupMax Horn
svn-id: r34649
2008-09-25SCUMM: Moved more stuf from class Actor to ActorHEMax Horn
svn-id: r34648
2008-09-25SCUMM: Moved Actor::drawActorToBackBuf to class ActorHEMax Horn
svn-id: r34647
2008-09-25SCUMM: Added a new ActorHE class, as well as a virtual ↵Max Horn
Actor::prepareDrawActorCostume() method svn-id: r34646
2008-09-24Fix bugs #1981081: "ITE: No blinking disk icon" and #1971729: "IHNM: No ↵Eugene Sandulenko
Animation of Disk Icon" svn-id: r34645
2008-09-24Changed builtin Common::String capacity to 24 (on 32 bit systems), to make ↵Max Horn
sizeof(String) 32; reduces overall memory req by 200k on my system; overall # of mallocs after this + the refcount memory pool change is almost unchanged svn-id: r34644
2008-09-24cleanupMax Horn
svn-id: r34643
2008-09-24Changed Common::String to use a MemoryPool for its refcountsMax Horn
svn-id: r34642
2008-09-24Readded missing special case for the storm animation in ITE. Fixes bug ↵Filippos Karapetis
#2125675 - "ITE: Game locks up in storm clouds scene" svn-id: r34639
2008-09-23Improved updateScreenAndWait; the mouse cursor is less jerky now in some ↵Benjamin Haisch
scenes in Manhole:N&E svn-id: r34638
2008-09-23Fix for bug #2120780 "GUI: gui-theme command-line option ignored", '-f' and ↵Johannes Schickel
'-g' command line switch behavior. svn-id: r34637
2008-09-23Add another French Windows version of Putt-Putt Enters the Race.Travis Howell
svn-id: r34636
2008-09-23Fix for bug #1917981: Game crash when finishing Indy3 demo. At the same ↵Max Horn
time, added a new paranoia check svn-id: r34635
2008-09-23Perform error checking when reading from a ZIP fileMax Horn
svn-id: r34634
2008-09-23cleanupMax Horn
svn-id: r34633
2008-09-23Moved ZipArchive to namespace Common; moved unzip internals from unzip.h to ↵Max Horn
unzip.cpp (to be cleaned up) svn-id: r34632
2008-09-23ImageManager: renamed remArchive() to removeArchive(); switched to using a ↵Max Horn
SearchSet + ZipArchive to access ZIP files (code is much simpler now yet more flexible, yay) svn-id: r34631
2008-09-23Moved ZipArchive implementation into unzip.cpp, added new ZipArchive::isOpen ↵Max Horn
method svn-id: r34630
2008-09-22Fix comments for random() funcs (thanks to salty-horse for pointing this out)Max Horn
svn-id: r34628
2008-09-22Fixed full screen toggling via alt+enter.Johannes Schickel
svn-id: r34627
2008-09-21Reflect current teamEugene Sandulenko
svn-id: r34624
2008-09-21Add recent patch contributors. Reflect current ScummVM team in the creditsEugene Sandulenko
svn-id: r34623
2008-09-21Patch #2054467: CRUISE: 64bits fixesEugene Sandulenko
svn-id: r34622
2008-09-20In the CD filesystem, nothing can be opened for writing, so justMarcus Comstedt
short-circuit any call to openForWriting(). Also, directories and non-existing files can't be opened for reading either, so just return 0 for those. svn-id: r34621
2008-09-20game.h is now in engines, not base.Marcus Comstedt
svn-id: r34620
2008-09-20I think this is the correct fix for bug #2081347 ("MM: Charset out ofTorbjörn Andersson
bounds!"). If I understand correctly, version <= 2 games only have one (hard- coded) font, so when that's initialised we can set _curId to 0. svn-id: r34619
2008-09-20Fix for bug #2120602: 5ALL: Starting the launcher with -f triggers assertionMax Horn
svn-id: r34617
2008-09-20Little readability tweakMax Horn
svn-id: r34615
2008-09-20fix drawing order in saveload choosers (draw container before contents)Willem Jan Palenstijn
svn-id: r34614
2008-09-20Updated theme file version, to reflect latest addition of new required ↵Johannes Schickel
entries/files. svn-id: r34613
2008-09-20Fixed "empty control statement" warning in FSDirectory::matchPattern().Vicent Marti
svn-id: r34605
2008-09-19Changed tinsel's volume range (0-127) to match ScummVM's (0-255)Filippos Karapetis
svn-id: r34603
2008-09-19Updated MSVC project files with the latest changes (moved base/game.* to ↵Filippos Karapetis
engines/game.*) svn-id: r34602
2008-09-18Added 'native' implementations for FSDirectory::matchPattern & ↵Max Horn
SearchSet::getAllNames (untested) svn-id: r34599
2008-09-17Simplified & fixed SearchManagerMax Horn
svn-id: r34598
2008-09-17Added some noteworthy improvements due to Chris Page & GSoC 2008Max Horn
svn-id: r34597
2008-09-17Patch #2060517: SCUMM: engine sets incorrect talkspeed valueMax Horn
svn-id: r34596
2008-09-17Patch #2043093 (again - new patch): OS/2 patches for posix-fsMax Horn
svn-id: r34595