Update runtime to have mod list functionality

This commit is contained in:
Mr-Wiseguy 2024-09-03 00:04:17 -04:00
parent cffda249a7
commit 25e6ca6717
2 changed files with 7 additions and 1 deletions

@ -1 +1 @@
Subproject commit 3718758cd529c779018a880ab645cec9d9888803
Subproject commit 986881e4e1b19d39ad0efd5a301be7ed439434b1

View File

@ -631,6 +631,12 @@ int main(int argc, char** argv) {
recomp::mods::scan_mods();
printf("Found mods:\n");
for (const auto& mod : recomp::mods::get_mod_details("mm")) {
printf(" %s(%s)\n", mod.mod_id.c_str(), mod.version.to_string().c_str());
}
printf("\n");
recomp::start(
64 * 1024 * 1024, // 64MB to have plenty of room for loading mods
project_version,