Game metadata extractor and some fixes

- App not closing on back pressed (AlberInputListener.java)
- Extract SMDH from rom.
- Extract metadata from SMDH
This commit is contained in:
Gabriel 2023-12-21 02:31:22 -04:00
parent 9ca7e88b6c
commit c0960dcccd
13 changed files with 370 additions and 16 deletions

7
include/jni_driver.hpp Normal file
View file

@ -0,0 +1,7 @@
#include <vector>
#include "helpers.hpp"
class Pandroid {
public:
static void onSmdhLoaded(const std::vector<u8> &smdh);
};