aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/dc
AgeCommit message (Collapse)Author
2011-06-01DC: Clarify commentMax Horn
2011-06-01Merge branch 'branch-1-3-0' into masterMax Horn
I manually resolved all conflicts, and inspected every single change. Many were due to the version string mismatch and thus easily resolved. The MSVC project files add in the 1-3-0 branch were not merged, neither where the changes to gui/themes/translations.dat. Conflicts: NEWS backends/base-backend.cpp backends/graphics/samsungtvsdl/samsungtvsdl-graphics.cpp backends/module.mk backends/platform/ds/arm9/makefile backends/platform/psp/README.PSP backends/platform/samsungtv/main.cpp backends/platform/samsungtv/samsungtv.cpp backends/saves/posix/posix-saves.cpp base/commandLine.cpp base/internal_version.h base/main.cpp common/array.h configure devtools/create_project/create_project.cpp dists/android/AndroidManifest.xml dists/android/plugin-manifest.xml dists/iphone/Info.plist dists/irix/scummvm.spec dists/macosx/Info.plist dists/redhat/scummvm-tools.spec dists/redhat/scummvm.spec dists/scummvm.rc dists/slackware/scummvm.SlackBuild dists/wii/meta.xml engines/sci/parser/vocabulary.cpp engines/tinsel/handle.cpp gui/themes/translations.dat
2011-05-25ALL: initialise -> initializeMatthew Hoops
2011-05-23DC: Fix compilationMax Horn
2011-05-12GIT: Clean up: Suppress SVN tags, now uselessstrangerke
2011-05-03COMMON: Forbid use of getcwd&getwd; add macro to enable unistd.h compatibilityMax Horn
2011-05-03DC: Fix various forbidden symbol clashesMax Horn
2011-05-03BACKENDS: Allow various files to use stuff from time.hMax Horn
2011-05-01Merge pull request #16 "Add a PixelFormat to Graphics::Surface.".Johannes Schickel
For further discussion check here: https://github.com/scummvm/scummvm/pull/16 Conflicts: graphics/png.cpp
2011-05-01DC: Disable serial for releaseMarcus Comstedt
2011-04-29DC: Create a "dcdist" target for buildbotMarcus Comstedt
The "dcdist" target creates the directory dcdist/scummvm and copies relevant files from the nightly build into it. This is is they do not have to be enumerated in the buildbot configuration.
2011-04-29DC: Aesthetical improvements to plugin loaderMarcus Comstedt
2011-04-28DC: Fix compilationOri Avtalion
2011-04-20DC: Provide some feedback when loading pluginsMarcus Comstedt
Display the names of the plugins being loaded, and display amount of free memory while doing so. This should make it easier to spot the case that too many engine plugins have been placed on the boot medium.
2011-04-20DC: Move dynamic plugin handling into the platformMarcus Comstedt
2011-04-17ALL/GRAPHICS: Remove Surface::bytesPerPixel.Johannes Schickel
2011-02-19Merge branch 'osystem-palette' of https://github.com/lordhoto/scummvm into ↵Johannes Schickel
master Conflicts: backends/platform/android/android.cpp engines/sci/graphics/screen.cpp engines/sci/graphics/transitions.cpp
2011-02-18DC: Don't use $(VER_REV) with gitMarcus Comstedt
It seems unlikely that git will ever be able to produce a $(VER_REV) of 6 characters or less (the requirement for the version field in IP.BIN), so don't even try to use it.
2011-02-16DC: Adapt to setPalette/grabPalette RGBA->RGB change.Johannes Schickel
This change is not tested, but should hopefully work fine.
2011-02-12GIT: use git for describing the version.dhewg
2011-02-12BUILD: Remove explicit references to SVN in revision variable names.Jordi Vilalta Prat
svn-id: r55898
2011-02-09AUDIO: Rename sound/ dir to audio/Max Horn
svn-id: r55850
2011-02-07COMMON: OSystem now has a PaletteManagerMax Horn
svn-id: r55806
2011-01-08DC: Sync legacy makefile with recent changesMarcus Comstedt
svn-id: r55173
2011-01-08DC: Fix a compilation warningMarcus Comstedt
svn-id: r55172
2011-01-08DC: Implement logMessage()Marcus Comstedt
svn-id: r55171
2011-01-07DC: Ensure creation of output sections .{c,d}torsMarcus Comstedt
Add an object with an empty .ctors and .dtors section to the build of each plugin. This ensures that there will be an output section .ctors and one .dtors in the output file (they could be empty though). If these output sections were to be removed, the symbols defined inside by the linker script could disappear as well, and we don't want that. svn-id: r55149
2011-01-07DC: Check plugins for required symbolsMarcus Comstedt
Make sure that all the required symbols exist in generated plugins. If not, the strip command may have removed them... svn-id: r55144
2010-12-03DC: Remove extra semicolon. (Should fix compiliation hopefully).Johannes Schickel
svn-id: r54753
2010-12-03DC: Implement getSystemLanguage()Marcus Comstedt
svn-id: r54752
2010-12-01DC: Adapted CDDA interface to the new standard.Marcus Comstedt
svn-id: r54714
2010-11-19COMMON: Split common/stream.h into several headersMax Horn
svn-id: r54385
2010-11-16GUI: Rename gui/GuiManager.* to gui/gui-manager.*Max Horn
svn-id: r54265
2010-10-12JANITORAL: Clean trailing whitespaces.Jordi Vilalta Prat
svn-id: r53160
2010-07-29DC: Let scummvm.ini override autodetect of gamesMarcus Comstedt
If a game CD has a scummvm.ini file with at least one game domain in it, the normal autodetection is now bypassed and a menu of only the games in the .ini file is presented instead. The descriptions of the games are taken from the .ini file, but icons are still scanned for in the old fashion. Note that previously ScummVM would read global options from the scummvm.ini file on the boot disc (if present), but now global options are instead taken from the scummvm.ini on the game disc (in case of a disc swap). svn-id: r51480
2010-07-29DC: Specialize createConfig{Read,Write}Stream Marcus Comstedt
Implement platform-specific variants of createConfigReadStream() and createConfigWriteStream(), instead of inheriting the BaseBackend definitions. Nonstandard behavious is as follows: * createConfigWriteStream() always returns 0 (read-only filesystem) * createConfigReadStream() returns an empty MemoryReadStream instead of NULL if scummvm.ini does not exist. This is to make sure that loadDefaultConfigFile() always clears out any old config data, as I'll want to restart config parsing from scratch after a disc swap. svn-id: r51478
2010-07-29BUILD: Unify how MODULE_DIRS is computed for backendsMax Horn
This should help avoid situations where MODULE_DIRS is not set to a complete list of build dirs (which causes troubles with the automatic header dependency detection logic). On the long run, we should replace the relevant code by a macro or also use rules.mk for this (with yet another if/else case add to it). svn-id: r51467
2010-07-29BUILD: Compile & link certain files only for specific BACKEND valuesMax Horn
svn-id: r51465
2010-06-15SYSTEM: Unify OSystem::getSupportedFormats() signatureMax Horn
svn-id: r49838
2010-05-09Rename DISABLE_*SCALERS to USE_*SCALERS, and move the mk/cpp defines to ↵Andre Heider
configure. svn-id: r48977
2010-03-21Ack, typo!Marcus Comstedt
svn-id: r48352
2010-03-21Autodetect long V numbers and shorten them.Marcus Comstedt
svn-id: r48351
2010-03-18Convert some occurences of StringList to StringArray;Max Horn
try to fix compile error in GP2x code svn-id: r48286
2010-03-11Replace Audio::MixerImpl::setOutputRate with a new 'sampleRate' param to the ↵Max Horn
MixerImpl constructor svn-id: r48238
2010-03-10Remove last traces of OSystem::getOutputSampleRate()Max Horn
svn-id: r48229
2010-03-08Remove unnecessary #includesMax Horn
svn-id: r48185
2010-01-28Silenced some more cppcheck style warnings.Torbjörn Andersson
svn-id: r47628
2010-01-25Strip trailing spaces/tabs.Johannes Schickel
svn-id: r47541
2009-11-14Remove Igor engineMax Horn
svn-id: r45898
2009-10-17Made find_unused_pixel() take the transparency mask into account, notMarcus Comstedt
counting palette colours of masked pixels as used. Fixes transparency on the new default icon. svn-id: r45183