We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd6bc30 commit 202c561Copy full SHA for 202c561
src/main.cpp
@@ -12,6 +12,7 @@
12
#include <cstdint>
13
#include <cstdio>
14
#include <cstdlib>
15
+#include <cstring>
16
#include <memory>
17
#include <sdk/calc/calc.h>
18
#include <sdk/os/debug.h>
@@ -88,7 +89,9 @@ int main() {
88
89
std::unique_ptr<Executable> choosen;
90
{
91
std::forward_list<std::unique_ptr<Executable>> list;
- // discover<BinaryLoader>::run(list);
92
+ if (std::strcmp(reinterpret_cast<const char *>(addresses),
93
+ "2017.0512.1515") == 0) // 2000 aka original hhk2
94
+ discover<BinaryLoader>::run(list);
95
discover<ELFLoader>::run(list);
96
choosen = do_gui(list);
97
}
0 commit comments