diff options
-rw-r--r-- | AUTHORS | 2 | ||||
-rw-r--r-- | engines/engines.mk | 6 | ||||
-rw-r--r-- | gui/credits.h | 3 | ||||
-rwxr-xr-x | tools/credits.pl | 2 |
4 files changed, 13 insertions, 0 deletions
@@ -29,6 +29,7 @@ ScummVM Team Matthew Hoops Filippos Karapetis Pawel Kolodziejski + Kari Salminen Eugene Sandulenko David Symonds @@ -140,6 +141,7 @@ ScummVM Team Johannes Schickel Miscellaneous: + David Corrales-Lopez - Filesystem access improvements Jerome Fisher - MT-32 emulator Jochen Hoenicke - Speaker & PCjr sound support, Adlib work Robin Watts - ARM assembly routines for nice speedups on diff --git a/engines/engines.mk b/engines/engines.mk index e2851d43ae..07afd6f2f3 100644 --- a/engines/engines.mk +++ b/engines/engines.mk @@ -108,3 +108,9 @@ DEFINES += -DDISABLE_TOUCHE else MODULES += engines/touche endif + +MODULES += engines/m4 +MODULES += engines/kom +MODULES += engines/mohawk +MODULES += engines/ill +MODULES += engines/sci diff --git a/gui/credits.h b/gui/credits.h index 5a646bf471..23aef29ff9 100644 --- a/gui/credits.h +++ b/gui/credits.h @@ -30,6 +30,7 @@ static const char *credits[] = { "\\C\\c0""Matthew Hoops", "\\C\\c0""Filippos Karapetis", "\\C\\c0""Pawel Kolodziejski", +"\\C\\c0""Kari Salminen", "\\C\\c0""Eugene Sandulenko", "\\C\\c0""David Symonds", "\\C\\c0""", @@ -145,6 +146,8 @@ static const char *credits[] = { "\\C\\c0""Johannes Schickel", "\\C\\c0""", "\\C\\c1""Miscellaneous", +"\\C\\c0""David Corrales-Lopez", +"\\C\\c2""Filesystem access improvements", "\\C\\c0""Jerome Fisher", "\\C\\c2""MT-32 emulator", "\\C\\c0""Jochen Hoenicke", diff --git a/tools/credits.pl b/tools/credits.pl index 430671b3ec..293700faaa 100755 --- a/tools/credits.pl +++ b/tools/credits.pl @@ -487,6 +487,7 @@ begin_credits("Credits"); add_person("Matthew Hoops", "clone2727", ""); add_person("Filippos Karapetis", "[md5]", ""); add_person("Paweł Kołodziejski", "aquadran", ""); + add_person("Kari Salminen", "Buddha^", ""); add_person("Eugene Sandulenko", "sev", ""); add_person("David Symonds", "dsymonds", ""); end_section(); @@ -627,6 +628,7 @@ begin_credits("Credits"); end_section(); begin_section("Miscellaneous"); + add_person("David Corrales-Lopez", "david_corrales", "Filesystem access improvements"); add_person("Jerome Fisher", "KingGuppy", "MT-32 emulator"); add_person("Jochen Hoenicke", "hoenicke", "Speaker & PCjr sound support, Adlib work"); add_person("Robin Watts", "robinwatts", "ARM assembly routines for nice speedups on several ports; improvements to the sound mixer"); |