aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/dc
AgeCommit message (Collapse)Author
2009-07-26Create IP.BIN.Marcus Comstedt
svn-id: r42825
2009-07-05Refresh the screen if pollEvent() is called without updateScreen() being ↵Marcus Comstedt
called for a long time. svn-id: r42139
2009-06-13Detected games with different language or platform are nowMarcus Comstedt
no longer treated as duplicates, even if they have the same target and directory. Also, pass these parameters to the ConfMan, so that the correct version of the game is started. svn-id: r41504
2009-05-29Changed SaveFileManager methods to take Common::String params (instead of ↵Max Horn
char pointers) svn-id: r41000
2009-05-21Workaround for shells that treat an empty list in for as a syntax error...Marcus Comstedt
svn-id: r40758
2009-05-21Micro-optimization: Don't re-strip plugins which are not modified.Marcus Comstedt
svn-id: r40757
2009-05-21Ack, can't use something set with := in the dependency section. *sigh* New ↵Marcus Comstedt
try. svn-id: r40753
2009-05-21Added proper dependencies for the "plugin_dist" target.Marcus Comstedt
svn-id: r40751
2009-03-21argv should not be modified; make it plenty const.Marcus Comstedt
svn-id: r39591
2009-03-21Fixed some warnings.Marcus Comstedt
svn-id: r39590
2009-03-21Added support for dynamic plugins on Dreamcast to the configure script.Marcus Comstedt
svn-id: r39587
2009-03-20Moved hardware initialization to a constructor, to make it run really early.Marcus Comstedt
svn-id: r39577
2009-03-18Initial support for building the Dreamcast port using the configureMarcus Comstedt
script. Dynamic modules are not supported just yet. svn-id: r39524
2009-03-17Removed superfluous comma and namespace specifier.Marcus Comstedt
svn-id: r39495
2009-03-17Removed superfluous semicolon.Marcus Comstedt
svn-id: r39494
2009-03-17Changed grabOverlay() and copyRectToOverlay() to use OverlayColor instead of ↵Marcus Comstedt
int16. svn-id: r39493
2009-02-15Removed OSystem_Dreamcast::fillScreen implementation after discussing it ↵Johannes Schickel
with Marcus. svn-id: r38327
2009-02-15- Replace OSystem::clearScreen with OSystem::fillScreen as discussed on -devel.Johannes Schickel
- Update BaseBackend and DC port to properly implement OSystem::fillScreen (now only PalmOS has to be updated). - Update all client code which relied on OSystem::clearScreen so far. svn-id: r38304
2009-02-01Merged r36175 from branch-0-13-0:Marcus Comstedt
Fixed alpha blending in the UI dialogs by adding alpha computation to the blendPixelPtr() function. To minimize impact, pre-multiplied alpha is assumed, meaning that the blending of the R, G and B components is the same both with and without hardware alpha. svn-id: r36177
2009-01-30Moved default implementations for various OSystem methods into a new class ↵Max Horn
BaseBackend svn-id: r36135
2009-01-27Need graphics/colormasks.h for Graphics::createPixelFormat.Marcus Comstedt
svn-id: r36108
2009-01-27Disable autosave (fixes [2516389]).Marcus Comstedt
svn-id: r36106
2009-01-23Renamed FSNode::openForReading / openForWriting to createReadStream / ↵Max Horn
createWriteStream, again to make ownership of the returned stream clear svn-id: r36014
2009-01-22Get rid of the wrappers around the zlib stream wrapper wrappers ;)Max Horn
svn-id: r36007
2009-01-22Got rid of several occurrences of gBitFormatMax Horn
svn-id: r35995
2009-01-11Enabled GROOVIE and TUCKER as well, as they are enabled by default by the ↵Marcus Comstedt
standard configure script. svn-id: r35812
2009-01-10Enable IHNM.Marcus Comstedt
svn-id: r35808
2009-01-02Renamed gui/newgui.cpp -> gui/GuiManager.cpp and gui/newgui.h -> ↵Johannes Schickel
gui/GuiManager.h svn-id: r35668
2009-01-01Whoa! Removing trailing spaces.Eugene Sandulenko
svn-id: r35648
2008-12-14Use the new nifty defines DISABLE_TEXT_CONSOLE and DISABLE_COMMAND_LINE.Marcus Comstedt
svn-id: r35363
2008-11-06Got rid of OSystem::colorToRGB and RGBToColor; added implementations for ↵Max Horn
OSystem::getOverlayFormat to several ports (pending testing by the porters) svn-id: r34912
2008-11-06Got rid of OSystem::ARGBToColor and colorToARGBMax Horn
svn-id: r34911
2008-10-02Renamed FilesystemNode -> FSNodeMax Horn
svn-id: r34716
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-14Big patch changing semantics of ReadStream::eos():Willem Jan Palenstijn
eos() now only returns true _after_ trying to read past the end of the stream. This has a large potential for regressions. Please test! svn-id: r34549
2008-09-13Big patch changing the signature of various Stream methods (some ports may ↵Max Horn
need to be slightly tweaked to fix overloading errors/warnings) svn-id: r34514
2008-09-03Pushed AbstractFilesystemNode::openForReading() / openForWriting() impls out ↵Max Horn
to backends svn-id: r34304
2008-09-03Moved FilesystemNode / FSList to namespace Common; also got rid of some ↵Max Horn
'typedef Common::String String;' name aliases svn-id: r34302
2008-08-27FSNode code: Merged most versions of lastPathComponent() into one new ↵Max Horn
AbstractFilesystemNode::lastPathComponent() method, with customizable path separator character svn-id: r34197
2008-08-22code formatting cleanupMax Horn
svn-id: r34096
2008-07-20Solaris tr does not like character classes in some locales. Use "C" locale.Marcus Comstedt
svn-id: r33143
2008-07-05Enable all engines.Marcus Comstedt
svn-id: r32923
2008-06-29Updated to use new EngineMan.detectGames() API.Marcus Comstedt
svn-id: r32838
2008-06-29New Mixer API.Marcus Comstedt
svn-id: r32836
2008-06-28Set $(DEPDIR).Marcus Comstedt
svn-id: r32832
2008-05-12- Added an engine plugin manager and moved engine specific functionality into itJordi Vilalta Prat
- base/plugins.* reorganization svn-id: r32045
2008-05-06Unified BUILD_PLUGINS and DYNAMIC_MODULES in the makefilesJordi Vilalta Prat
svn-id: r31889
2008-05-02Updated the list of the DC plugins' exported symbolsJordi Vilalta Prat
svn-id: r31802
2008-04-05Code cleanup.Marcus Comstedt
svn-id: r31414