aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/ds/arm9
AgeCommit message (Collapse)Author
2009-01-01Set/unified svn:keywords for all *.h and *.cpp filesMax Horn
svn-id: r35651
2009-01-01Whoa! Removing trailing spaces.Eugene Sandulenko
svn-id: r35648
2008-12-21DS port: Removed mixer.cpp from OPTLIST (saves 11kb code size); added ↵Max Horn
several DEFINES which reduce the binary size further svn-id: r35468
2008-11-30Fix NDS warning that should really be an error. Returning nothing from a nonRobin Watts
void function should be an error in any sane compiler... svn-id: r35176
2008-11-29Remove warnings from NDS build.Robin Watts
svn-id: r35172
2008-11-24Nintedo DS specific code: Remove function call (strlen) from loop condition.Robin Watts
(Spotted by Fingolfin - Thanks) svn-id: r35163
2008-11-23Eliminate some warnings from NDS specific code.Robin Watts
svn-id: r35157
2008-11-23Remove NDS blitters.s, as it's unused - we now have blitters_arm.s instead.Robin Watts
svn-id: r35156
2008-11-20NDS: Fix link error in non-SCUMM builds by removing some dead & obsolete codeMax Horn
svn-id: r35129
2008-11-20Fix warningsMax Horn
svn-id: r35128
2008-11-15Tweaks to make DS buildable again.Robin Watts
svn-id: r35085
2008-11-15DS: Replaced call to obsolete addButton methodMax Horn
svn-id: r35084
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-10-31Specified VECTOR_RENDERER_FORMAT to 1555 for DS build (at least from the ↵Johannes Schickel
code it looks like DS uses a 1555 overlay). svn-id: r34869
2008-10-26DS port: My version of devkitpro complains that various symbols are defined inRobin Watts
a different namespace. The fix is to refer to these symbols using ::. svn-id: r34850
2008-10-26DS port: Declare ARM blitters as being ITCM_CODE, so that we avoid the dreadedRobin Watts
"relocation truncated to fit" error in thumb builds. svn-id: r34849
2008-09-17DS: Removing some dead code; merged (parts of) std_cwd into ↵Max Horn
GBAMPSaveFileManager::listSavefiles svn-id: r34587
2008-09-15DS: Backported 0.12 changes to trunkMax Horn
svn-id: r34568
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-14DS: Removed legacy GCC 2.x build code (NDS/DevKitPro uses GCC 3 or newer ↵Max Horn
anyway); thinned down INCLUDES some more; added a FIXME to the elf->bin rule svn-id: r34548
2008-09-14Another NDS compilation fix, plus a warning fixMax Horn
svn-id: r34546
2008-09-14Changed VPATH to vpath, to allow building NDS port in parallel to another ↵Max Horn
port (for the records, this patch went to Neil in January, and he didn't complain) svn-id: r34544
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-08-18Updates to the scummvm blitting code as discussed on the mailing list.Robin Watts
1) Remove DS version of the ARM blitters in favour of the 'normal' ARM one. 2) Update normal ARM blitter to use Carlo's clever algorithm. 3) Update C version with Max Horns patch (slightly tweaked - counting down on loops is better, M'kay). svn-id: r34006
2008-07-10Fixed a few warningsBertrand Augereau
svn-id: r32994
2008-07-09DS: Backend changes for new mixer codeNeil Millstone
svn-id: r32978
2008-06-28Removed obsolete ::clearSoundCallback() codeMax Horn
svn-id: r32826
2008-06-03DS: Forgot to commit #include changes in the ds-fs.* files; this allows to ↵Max Horn
get rid of -Isource/fat svn-id: r32520
2008-06-01DS: Removed some duplicate file content (thanks to Qvist for pointing this out)Max Horn
svn-id: r32479
2008-06-01Tweaks to DS makefiles.Robin Watts
1) It wouldn't build at all for me, because source/fat had been missed off the INCLUDES line. 2) Stray whitespace removed (to stop emacs warning on saving) 3) DS_BUILD flag selection reworked slightly. Now do: make all SCUMM_BUILD=x (where x is a,b,c,d,e,f,g) and it'll select that version and build it. If no x is supplied or x is not a-g, then version a will be built. 4) New allbuilds target. In backends/platform/ds, do: make allbuilds and versions A-G are built in turn (version G does not complete currently due to lack of logo g). This uses a 'semiclean' target in each makefile to clean just the files that change between versions. svn-id: r32470
2008-05-31DS: make sure DEPDIR and srcdir are inited, so that *.d files end up in the ↵Max Horn
right spot svn-id: r32437
2008-05-31DS: Fix compilation rule in Makefile to not compile everything twiceMax Horn
svn-id: r32436
2008-05-31DS: Adjust some compiler warningsMax Horn
svn-id: r32434
2008-05-31DS: Removed some pointless -I compiler directivesMax Horn
svn-id: r32433
2008-05-31DS: The SpriteEntry::atributes array has only 3 elements; also removed some ↵Max Horn
apparently not needed #includes svn-id: r32432
2008-05-31DS: Use DEVKITPRO env var to find DevKitPro files, as the DevKitPro manual ↵Max Horn
suggests; it does not make sense to hardcode Neil's development environment paths by default svn-id: r32431
2008-05-31DS: Fixed a warning; simplified & fixed the way scummvm_main gets invokedMax Horn
svn-id: r32430
2008-05-31Fixing various warnings in the DS portMax Horn
svn-id: r32428
2008-05-24Adding getFileSystemFactory() method in response to mail on scummvm-devel.Neil Millstone
svn-id: r32247
2008-05-15Porting changes from 0.11.0 branchNeil Millstone
svn-id: r32140
2008-05-15NDS: Rollback of the custom build target rule from .cpp.o to %.o: %.cppBertrand Augereau
svn-id: r32137
2008-05-15NDS: Protection against FastRam (ITCM) allocation failureBertrand Augereau
svn-id: r32136
2008-05-14NDS: Minor code formatting fixesBertrand Augereau
svn-id: r32100
2008-05-14NDS: OSystem::getTimeAndDate is demoted to the port (with the standard Bertrand Augereau
implementation) svn-id: r32099
2008-05-14NDS : Compilation fixesBertrand Augereau
svn-id: r32098
2008-05-06Unified BUILD_PLUGINS and DYNAMIC_MODULES in the makefilesJordi Vilalta Prat
svn-id: r31889
2008-05-06Allow static and dynamic plugins to be used at the same timeJordi Vilalta Prat
svn-id: r31888
2008-03-08Clearing unnecessary execution bitEugene Sandulenko
svn-id: r31071
2008-01-28Fixed the spaces before tabs.Jordi Vilalta Prat
svn-id: r30667
2008-01-27Removed trailing spaces.Jordi Vilalta Prat
svn-id: r30664