Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-08-29 | SCI: Fixed bug #3037874 - "SCI1.1: High cpu usage when a textbox is displayed" | Filippos Karapetis | |
svn-id: r52432 | |||
2010-08-29 | SCI: Throttle the invocations of Engine::shouldQuit() | Filippos Karapetis | |
SCI constantly invoked Engine::shouldQuit(), which in turn called 2 virtual functions. This added a significant overhead, as this was called constantly without any throttling whatsoever. Now, the invocation of shouldQuit() is throttled to be on each frame update (i.e. at a rate of 60fps). Thanks to wjp for profiling this. svn-id: r52431 | |||
2010-08-29 | SCI: Added proper handling of QFG exported character files. | Filippos Karapetis | |
Now, QFG2, 3 and 4 may read exported characters from all other QFG games, like the originals did. Fixes bug #3054692 - "QFG2/QFG3 Import issues". svn-id: r52430 | |||
2010-08-28 | I18N: Look for translations data file in Themes path | Thierry Crozat | |
If the translations.dat file is not found using the SearchMan, it now looks for that file into the themepath directory and sub-directories (if the path is defined). svn-id: r52428 | |||
2010-08-28 | GOB: Change detection of Fascination CD | Arnaud Boutonné | |
At the opposite of the other versions, the real name of the first stick file in Fascination CD is intro.stk, not disk0.stk. svn-id: r52424 | |||
2010-08-28 | DINGUX: disable aspect ratio correction for some resolutions | Fabio Battaglia | |
Disable aspect ratio correction for games which have a native 240px height res, this fixes Maniac Mansion NES on dingux. svn-id: r52422 | |||
2010-08-28 | HUGO: Remove executable flag in create_hugo source | Sven Hesse | |
svn-id: r52421 | |||
2010-08-28 | HUGO: Some fixes for the create_hugo tool | Arnaud Boutonné | |
svn-id: r52420 | |||
2010-08-27 | SCI: Fixed bug #3054613, "QFG character saves, naming convention" | Filippos Karapetis | |
svn-id: r52419 | |||
2010-08-27 | HUGO: Fix GCC warnings in objects_xx initialization | Arnaud Boutonné | |
svn-id: r52418 | |||
2010-08-27 | HUGO: Fix some action types in the creation tool | Arnaud Boutonné | |
svn-id: r52417 | |||
2010-08-27 | HUGO: Fix "UNIX" redefinition on Unix-like systems in create_hugo. | Johannes Schickel | |
svn-id: r52416 | |||
2010-08-27 | HUGO: Silence some const cast warnings in create_hugo. | Johannes Schickel | |
svn-id: r52415 | |||
2010-08-27 | HUGO: Fix a bug in creation tool in act14 (H1 Dos) | Arnaud Boutonné | |
Fix a bug (missing character id in initialization) in creation tool and silent some more warnings. svn-id: r52414 | |||
2010-08-27 | SCI: Fixed potential memory leak in convert_polygon() | Torbjörn Andersson | |
svn-id: r52413 | |||
2010-08-27 | SCI: adding kq4 0.247 | Martin Kiewitz | |
svn-id: r52412 | |||
2010-08-27 | SCI: Possible fix for bug #3053268 - "QFG1 VGA: Fetch spell crashes game" | Filippos Karapetis | |
svn-id: r52411 | |||
2010-08-27 | TOOLS: Fix some warnings in create_hugo | Arnaud Boutonné | |
svn-id: r52410 | |||
2010-08-27 | VIDEO: Change decodeImage() around a bit, plug a leak | Sven Hesse | |
Indeo3Decoder::decoderImage() was leaking inData svn-id: r52408 | |||
2010-08-27 | HUGO: Fix previous commit (bad format used) | Arnaud Boutonné | |
svn-id: r52407 | |||
2010-08-27 | HUGO: Hopefully fix GCC_PRINTF issue in util | Arnaud Boutonné | |
* Add a mask in each call of Warn(), Error() and Box() not using one * cleanup: use the same wording for 'End of namespace Hugo' in all files svn-id: r52406 | |||
2010-08-27 | Add support for HUGO game engine | Lars Persson | |
svn-id: r52405 | |||
2010-08-26 | HUGO: Removed some dead code and redundant indirection | Oystein Eftevaag | |
svn-id: r52404 | |||
2010-08-26 | HUGO: Implemented basic MIDI support. | Oystein Eftevaag | |
svn-id: r52403 | |||
2010-08-26 | NEWS: Mention new Caanoo port and GP2X plugin support. | John Willis | |
svn-id: r52402 | |||
2010-08-26 | CONFIGURE: Add support for building for the GPH Caanoo. | John Willis | |
The Caanoo is based on the GP2XWIZ backend but needs to be a seperate target as it uses a different toolchain/libs etc. svn-id: r52401 | |||
2010-08-26 | GP2XWIZ: Add initial support for the GPH Caanoo. | John Willis | |
Most of the codebase is the same, but the toolchain and libs are different. Support for Caanoo specific features will follow, I just want to get the build support into trunk for now. svn-id: r52400 | |||
2010-08-26 | SCI: adjust r52397 | Martin Kiewitz | |
actually they return 0:0, when no bytes were read, otherwise they return the destination pointer svn-id: r52398 | |||
2010-08-26 | SCI: kFileIOReadString/kFGets return byte count | Martin Kiewitz | |
in sierra sci of read bytes svn-id: r52397 | |||
2010-08-25 | SCI: Return empty string from fgets with maxsize 1 | Willem Jan Palenstijn | |
This should fix r3049360 in Hoyle4. svn-id: r52396 | |||
2010-08-25 | GOB: Detection of pirated games | Arnaud Boutonné | |
Add detection of the known cracked Coktel games with the appropriate ADGF_PIRATED flag svn-id: r52395 | |||
2010-08-25 | TOOLS: const correctness to fix compilation. | Andre Heider | |
svn-id: r52394 | |||
2010-08-25 | SCI: adding detection for freddy pharkas "fred" | Martin Kiewitz | |
fixes blop not appearing during intro song, because game thought we were too slow (bug #3051514) svn-id: r52392 | |||
2010-08-25 | HUGO: Use GCC_PRINTF on functions with variable arguments | Andre Heider | |
Two instances commented out with a FIXME for Strangerke :P svn-id: r52391 | |||
2010-08-25 | HUGO: Fix invalid usage of snprintf with va_args | Andre Heider | |
svn-id: r52390 | |||
2010-08-25 | COMMON: Fix eos handling in BufferedReadStream | Willem Jan Palenstijn | |
This makes it pass the test added in r52382. svn-id: r52389 | |||
2010-08-25 | M4: Silence gcc warning | Matthew Hoops | |
Original warning: "format not a string literal and no format arguments" svn-id: r52388 | |||
2010-08-25 | PSP: fixed flag to open() | Yotam Barnoy | |
I was missing a flag (PSP_O_TRUNC) causing the config file to be opened on top of the old file, causing file corruption. svn-id: r52387 | |||
2010-08-25 | AD: Fix infinite loop in cleanupPirated. | Johannes Schickel | |
svn-id: r52386 | |||
2010-08-25 | SCI: Make use of new ADGF_PIRATED flag | Eugene Sandulenko | |
svn-id: r52385 | |||
2010-08-25 | AD: Implement AGDF_PIRATED flag. | Eugene Sandulenko | |
svn-id: r52384 | |||
2010-08-25 | AD: Print out infromation about unknown version in better format | Eugene Sandulenko | |
Now it is suitable for direct copy/pasting into detection tables. svn-id: r52383 | |||
2010-08-25 | COMMON: Add test for BufferedReadStream's eos | Willem Jan Palenstijn | |
This test is currently failing. svn-id: r52382 | |||
2010-08-25 | SCI: apply qfg1vga fight patch on weapon master | Martin Kiewitz | |
fixes fighting the weapon master as well... svn-id: r52381 | |||
2010-08-25 | SCI: md5s from Bug #3049193 | Eugene Sandulenko | |
svn-id: r52380 | |||
2010-08-25 | SCI: making loading from ScummVM menu work correctly | Martin Kiewitz | |
using a trick for indirectly calling GameObject::init and then restoring, fixes text color/font code issues, also removing all the hackery svn-id: r52379 | |||
2010-08-25 | LURE: Workaround for bug #3047234 in English EGA version | Paul Gilbert | |
svn-id: r52378 | |||
2010-08-25 | COMMON: fixed EOS handling in BufferedReadStream and BufferedSeekableReadStream | Yotam Barnoy | |
EOS problem was causing Discworld to crash and zip files not to load on the PSP. svn-id: r52377 | |||
2010-08-25 | SCI: Make assert stricter. | Willem Jan Palenstijn | |
(Thanks to fuzzie.) svn-id: r52376 | |||
2010-08-25 | SCUMM: Fix bug #3039004 | Eugene Sandulenko | |
Bug #3039004: "MANIACNES: Ed does not appear at doorway." Actually whole thing is a gross hack on top of SCUMM v1.5 hack with extra wide screen. It all calls for review and writing specified methods. svn-id: r52375 |