aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-05-05TSAGE: Fixed problem with text being partly off-screen in Scene #9500Paul Gilbert
2011-05-05SWORD25: Removed the saved game filename from the savegame meta info structmd5
2011-05-05SWORD25: Added some FIXMEs in the save game and thumbnail codemd5
Also, translated some comments
2011-05-05SWORD25: Remove unused codemd5
2011-05-05WINCE: Link against Windows FS code againMax Horn
2011-05-05TSAGE: Fix several glitches in the speakers used in scene 4000. Initial ↵strangerke
problem still present though.
2011-05-05TSAGE: Fix a nasty graphical bug in scene 9450strangerke
2011-05-05TSAGE: Fix 6 freezes in scene 9850strangerke
2011-05-05TSAGE: fix 3 freezes in scene 9450strangerke
2011-05-05DRASCULA: Handle pitch in code using lockScreen()Marcus Comstedt
The surface returned by OSystem::lockScreen() can have a pitch which differs from w * bytesPerPixel, so modify the code to take this into account. Fixes FMV problems on Dreamcast.
2011-05-04GOB: Add another Italian Fascination versionSven Hesse
As supplied by alex86r in bug report #3297633.
2011-05-04GOB: Add another Italian Urban Runner versionSven Hesse
As supplied by alex86r in bug report #3297602.
2011-05-04Merge branch 'master' of https://github.com/scummvm/scummvmFabio Battaglia
2011-05-04N64: avoid bogus events if no controller pluggedFabio Battaglia
If the user has only a N64 mouse plugged in and no controllers this avoids fake clicks.
2011-05-04BUILD: Further restrict which backend source files are compiledMax Horn
2011-05-04BACKENDS: Fix copy & paste mistakes in some commentsMax Horn
2011-05-04CONFIGURE: Add missing SDL_BACKEND define for the OpenPandora backend.David-John Willis
* Not really sure when/how it got lost but as it's lack spectacularly breaks the backend it is a really good idea to put it back ;) Thanks to Max for the heads up.
2011-05-04TSAGE: Added a new command to show hotspot areasPaul Gilbert
2011-05-04TSAGE: Bugfix for skipping cutscenes correctlyPaul Gilbert
2011-05-04TSAGE: Some more conversions to US Englishmd5
2011-05-04TSAGE: Switched to American English, after the relevant discussion on -devel:md5
serialiser -> serializer synchronise -> synchronize
2011-05-04TSAGE: Now initializing the save game version properlymd5
2011-05-04TSAGE: Bumped up savegame version, so that the old savegames are still usablemd5
Savegames from revisions bf9b98f and 4f70162d are now version 2 savegames
2011-05-04GOB: Don't overwrite _destSpriteX after PRINTTEXTSven Hesse
Don't overwrite _destSpriteX after PRINTTEXT with a value that's only appropriate for monospaced fonts; support for non-monospaced fonts has been introduced with Woodruff. This should fix bug #3295889.
2011-05-04GOB: Plug a leakSven Hesse
Thanks to digitall for finding that one
2011-05-03BUILDS: Sort some stuff in backends/module.mkMax Horn
2011-05-03BUILD: Compile backend specific files only if their backend is selectedMax Horn
2011-05-03BUILD: Remove incorrect mention of 'symbian' backend from configureMax Horn
2011-05-03TSAGE: for consistency, use display2() when possiblestrangerke
2011-05-03TSAGE: Cleanup: Use NULL instead of 0 when handling pointers. Suppress some ↵strangerke
useless parameters too.
2011-05-03TSAGE: Fix a death loop in scene 4300/4250 (use helmet on alien)strangerke
2011-05-03PS2: Allow using mkdirMax Horn
2011-05-03MOTO: Change fprintf calls to debug callsMax Horn
2011-05-03DINGUX: Change fprintf calls to debug callsMax Horn
2011-05-03COMMON: Fix spelling of 'Philips'Matthew Hoops
2011-05-03WII: Fix compilationdhewg
2011-05-03MACOSX: Try to fix compile errors triggered with certain Mac OS X SDK versionsMax Horn
2011-05-03N64: Fix FS code regressionMax Horn
2011-05-03TSAGE: Bugfixes for displaying the creditsPaul Gilbert
2011-05-03TSAGE: Bugfixes to allow for drawing message strings that are emptyPaul Gilbert
2011-05-03GPH: Change fprintf to debugMax Horn
2011-05-03COMMON: Forbid use of getcwd&getwd; add macro to enable unistd.h compatibilityMax Horn
2011-05-03ANDROID: Fix various forbidden symbol clashesMax Horn
2011-05-03DINGUX: Remove unused (?) includeMax Horn
2011-05-03PSP: Fix more forbidden symbol clashesMax Horn
2011-05-03PS2: Fix various forbidden symbol clashesMax Horn
2011-05-03WII: Fix fs code compile regressionsMax Horn
2011-05-03VIDEO: Cleanup mixed array / type declarationMax Horn
2011-05-03DS: Remove references to DEVKITARMMax Horn
In some places we used $DEVKITARM, but in others we hardcode the path $DEVKITPRO/devkitARM. To ensure consistent behavior, I changed it to the latter everywhere for now. Should it turn out that we really want to have this flexible, we can reintroduce $DEVKITARM in a proper way. In that case, we could augment configure to set DEVKITARM to $DEVKITPRO/devkitARM, if it has not been set yet.
2011-05-03BACKENDS: Avoid #including .cpp filesMax Horn
So far, the various *-fs-factory.cpp files were #including the corresponding *-fs.cpp files. This is surprising and hence could lead to all kinds of problems). To fix this, provide proper headers for the *-fs.cpp files. This also makes code reuse via subclassing possible. Since not all ports were tested, this will likely lead to a few easy to fix compile regressions.