Skip to content

Commit

Permalink
lmao
Browse files Browse the repository at this point in the history
  • Loading branch information
altalk23 committed Jan 24, 2024
1 parent 45273f7 commit a15cdde
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions loader/test/main/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ struct $modify(MenuLayer) {
log::info("For global context:");
log::pushNest();
for (const auto& arg : Loader::get()->getLaunchArgumentNames()) {
log::info(arg);
log::info("{}", arg);
}
log::popNest();
log::info("For this mod:");
log::pushNest();
for (const auto& arg : Mod::get()->getLaunchArgumentNames()) {
log::info(arg);
log::info("{}", arg);
}
log::popNest();
log::info("Mod has launch arg 'modArg': {}", Mod::get()->hasLaunchArgument("modArg"));
Expand Down

0 comments on commit a15cdde

Please sign in to comment.