aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/create_kyradat/create_kyradat.cpp6
-rw-r--r--tools/create_kyradat/md5.cpp2
2 files changed, 7 insertions, 1 deletions
diff --git a/tools/create_kyradat/create_kyradat.cpp b/tools/create_kyradat/create_kyradat.cpp
index ab2d8783fa..3596751ff1 100644
--- a/tools/create_kyradat/create_kyradat.cpp
+++ b/tools/create_kyradat/create_kyradat.cpp
@@ -39,6 +39,11 @@ enum {
#include "towns.h"
#include "amiga.h"
+const Game kyra1FanTranslations[] = {
+ { kKyra1, IT_ITA, kTalkieVersion, "7a6887428c4847625db132a461cabbbf", kyra1FreCD },
+ GAME_DUMMY_ENTRY
+};
+
bool extractRaw(PAKFile &out, const Game *g, const byte *data, const uint32 size, const char *filename, int fmtPatch = 0);
bool extractStrings(PAKFile &out, const Game *g, const byte *data, const uint32 size, const char *filename, int fmtPatch = 0);
bool extractRooms(PAKFile &out, const Game *g, const byte *data, const uint32 size, const char *filename, int fmtPatch = 0);
@@ -718,6 +723,7 @@ const Game *gameDescs[] = {
kyra1GerGames,
kyra1TownsGames,
kyra1AmigaGames,
+ kyra1FanTranslations,
0
};
diff --git a/tools/create_kyradat/md5.cpp b/tools/create_kyradat/md5.cpp
index abdc002eb0..78af417171 100644
--- a/tools/create_kyradat/md5.cpp
+++ b/tools/create_kyradat/md5.cpp
@@ -226,7 +226,7 @@ bool md5_file(const char *name, uint8 digest[16], uint32 length) {
f = fopen(name, "rb");
if (f == NULL) {
- printf("md5_file couldn't open '%s'", name);
+ printf("md5_file couldn't open '%s'\n", name);
return false;
}