diff options
author | Fabio Battaglia | 2010-02-08 11:44:29 +0000 |
---|---|---|
committer | Fabio Battaglia | 2010-02-08 11:44:29 +0000 |
commit | 6938ca072aa05600ece0b7041e47a0fe8e4abba4 (patch) | |
tree | f26800ccd57e6ae1284715239a8cceb21beae424 | |
parent | 86163d5a6c294937a7d4f231f7ff14f5b652b295 (diff) | |
download | scummvm-rg350-6938ca072aa05600ece0b7041e47a0fe8e4abba4.tar.gz scummvm-rg350-6938ca072aa05600ece0b7041e47a0fe8e4abba4.tar.bz2 scummvm-rg350-6938ca072aa05600ece0b7041e47a0fe8e4abba4.zip |
Add N64 backend to credits
svn-id: r47988
-rw-r--r-- | AUTHORS | 3 | ||||
-rw-r--r-- | backends/platform/n64/Makefile | 2 | ||||
-rw-r--r-- | gui/credits.h | 3 | ||||
-rwxr-xr-x | tools/credits.pl | 6 |
4 files changed, 12 insertions, 2 deletions
@@ -180,6 +180,9 @@ ScummVM Team Maemo: Frantisek Dufka + Nintendo 64: + Fabio Battaglia + Nintendo DS: Neil Millstone diff --git a/backends/platform/n64/Makefile b/backends/platform/n64/Makefile index 8de2634a82..a646f73cb3 100644 --- a/backends/platform/n64/Makefile +++ b/backends/platform/n64/Makefile @@ -33,7 +33,7 @@ endif LIBS += -lm -lstdc++ -lc -lgcc -lz -lnosys -CXXFLAGS = -g -mno-extern-sdata -O2 -fomit-frame-pointer -march=vr4300 -mtune=vr4300 -mhard-float -fno-rtti -fno-exceptions -Wno-multichar -Wshadow -I$(LIBN64PATH) -I$(TOOLPATH)/include -I./ -I$(srcdir) -I$(srcdir)/engines +CXXFLAGS = -g -mno-extern-sdata -O2 --param max-inline-insns-auto=20 -fomit-frame-pointer -march=vr4300 -mtune=vr4300 -mhard-float -fno-rtti -fno-exceptions -Wno-multichar -Wshadow -I$(LIBN64PATH) -I$(TOOLPATH)/include -I./ -I$(srcdir) -I$(srcdir)/engines LDFLAGS = -g -march=vr4300 -mtune=vr4300 -nodefaultlibs -nostartfiles -mno-crt0 -L$(LIBN64PATH) -L$(TOOLPATH)/lib $(LIBS) -T n64ld_cpp.x -Xlinker -Map -Xlinker scummvm.map TARGET = scummvm diff --git a/gui/credits.h b/gui/credits.h index 0b578eea6b..37daa9d6cb 100644 --- a/gui/credits.h +++ b/gui/credits.h @@ -202,6 +202,9 @@ static const char *credits[] = { "C1""Maemo", "C0""Frantisek Dufka", "", +"C1""Nintendo 64", +"C0""Fabio Battaglia", +"", "C1""Nintendo DS", "C0""Neil Millstone", "", diff --git a/tools/credits.pl b/tools/credits.pl index b549c131e1..d3902d359e 100755 --- a/tools/credits.pl +++ b/tools/credits.pl @@ -681,6 +681,10 @@ begin_credits("Credits"); add_person("Frantisek Dufka", "fanoush", ""); end_section(); + begin_section("Nintendo 64"); + add_person("Fabio Battaglia", "Hkz", ""); + end_section(); + begin_section("Nintendo DS"); add_person("Neil Millstone", "agent-q", ""); end_section(); @@ -691,7 +695,7 @@ begin_credits("Credits"); begin_section("PocketPC / WinCE"); add_person("Nicolas Bacca", "arisme", "(retired)"); - add_person("Kostas Nakos", "Jubanka", ""); + add_person("Kostas Nakos", "Jubanka", ""); end_section(); begin_section("PlayStation 2"); |