Skip to content

Commit 3c559c4

Browse files
committed
Extend hash list of known startup logos with some bundled in several different bootleg versions of RPG_RT.exe
1 parent ab29d95 commit 3c559c4

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/exe_reader.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,13 @@
2828

2929
namespace {
3030
// hashes of known RPG_RT startup logos
31-
std::array<uint32_t, 5> logo_crc32 = { 0xdf3d86a7, 0x2ece66f9, 0x2fe0de56, 0x25c4618f, 0x91b2635a };
31+
std::array<uint32_t, 10> logo_crc32 = {
32+
0xdf3d86a7, 0x2ece66f9, 0x2fe0de56, 0x25c4618f, 0x91b2635a,
33+
34+
0x9307807f, 0x2e8271cb, 0x5e73987b, // Hellsoft�s bootleg "RPG Maker PRO 1.15"
35+
0x59ab3986, // Hellsoft�s translation of Rm2k3-1.0.4
36+
0x476138cb // French "Rabbi-Bodom" translation of Rm2k3-1.0.9.1
37+
};
3238
}
3339

3440
EXEReader::EXEReader(Filesystem_Stream::InputStream core) : corefile(std::move(core)) {

0 commit comments

Comments
 (0)