Enable RGB colour for Dreamcast.

svn-id: r44875
This commit is contained in:
Marcus Comstedt 2009-10-10 14:30:19 +00:00
parent f517f32902
commit 6f9a4749d1
2 changed files with 3 additions and 2 deletions

View File

@ -12,7 +12,7 @@ CC = sh-elf-gcc -ml -m4-single-only
CXX = sh-elf-g++ -ml -m4-single-only
LD = $(CXX)
CXXFLAGS= -O3 -Wno-multichar -funroll-loops -fschedule-insns2 -fomit-frame-pointer -fdelete-null-pointer-checks -fno-exceptions
DEFINES = -D__DC__ -DNONSTANDARD_PORT -DUSE_MAD -DUSE_ZLIB -DDISABLE_DEFAULT_SAVEFILEMANAGER -DDISABLE_TEXT_CONSOLE -DDISABLE_COMMAND_LINE
DEFINES = -D__DC__ -DNONSTANDARD_PORT -DUSE_MAD -DUSE_ZLIB -DDISABLE_DEFAULT_SAVEFILEMANAGER -DDISABLE_TEXT_CONSOLE -DDISABLE_COMMAND_LINE -DUSE_RGB_COLOR
LDFLAGS = -Wl,-Ttext,0x8c010000 -nostartfiles $(ronindir)/lib/crt0.o
INCLUDES= -I./ -I$(srcdir) -I$(ronindir)/include/ -I$(srcdir)/engines
LIBS = -L$(ronindir)/lib -lmad -lronin -lz -lm
@ -29,6 +29,7 @@ AR = sh-elf-ar cru
RANLIB = sh-elf-ranlib
HAVE_GCC3 = true
DISABLE_SCALERS = true
USE_RGB_COLOR = true
ifdef DYNAMIC_MODULES
DEFINES += -DDYNAMIC_MODULES

2
configure vendored
View File

@ -1649,7 +1649,7 @@ fi
# Enable 16bit support only for backends which support it
#
case $_backend in
sdl | wii)
sdl | wii | dreamcast)
if test "$_16bit" = auto ; then
_16bit=yes
else