I am trying to implement Czech fan translation to Kyrandia 1 and Kyrandia 3 (Kyrandia 2 is working fine), but I am failed on MD5 checksum of course. I didn't found any way how to bypass it, so I am decided to modify detection_tables source code instead (let me say that I am not a programmer, more something like advanced user).
So, I am cloned ScummVM Git repo, and modified file "scummvm/engines/kyra/detection_tables.h" like follows:
Code: Select all
{ // Czech fan translation
{
"kyra1",
"CD",
AD_ENTRY1("GEMCUT.PAK", "012c7cbff132e27d33d989c662086063"),
Common::CS_CZE,
Common::kPlatformDOS,
ADGF_CD,
GUIO4(GUIO_MIDIADLIB, GUIO_MIDIMT32, GUIO_MIDIPCSPK, GUIO_RENDERVGA)
},
KYRA1_CD_FAN_FLAGS(Common::CS_CZE, Common::EN_ANY)
},
Code: Select all
{ // Czech fan translation
{
"kyra3",
0,
AD_ENTRY1s("ONETIME.PAK", "951620e6298843e328bc745634373db5", AD_NO_SIZE),
Common::CS_CZE,
Common::kPlatformDOS,
ADGF_DROPLANGUAGE,
GUIO5(GUIO_NOMIDI, GUIO_RENDERVGA, GAMEOPTION_KYRA3_AUDIENCE, GAMEOPTION_KYRA3_SKIP, GAMEOPTION_KYRA3_HELIUM)
},
KYRA3_CD_FAN_FLAGS(Common::CS_CZE, Common::EN_ANY)
},
Now I can pass MD5 checksum but failing on "missing or corrupted" file "kyra.dat".
According to this information I am downloaded "kyra.dat" from here.
I am tried to place it to the folder with game files, to the folder with my compiled ScummVM executable file, and to the extrapath (where I have MT32 and GM SoundFonts too), but result is still the same, it is not working.
So, what am I doing wrong and how to solve it?
And why am I trying to do it? I am planning to submit request for adding MD5 checksum via bug tracker, but I want to be sure, that it is working correctly, before I will do it.
Thank you for any help.