From 370903b6c76716890644aada8f70365e73ae4dff Mon Sep 17 00:00:00 2001 From: scawful Date: Tue, 6 Aug 2024 22:20:51 -0400 Subject: [PATCH] add app namespace to bps patch in cli --- src/cli/command_handler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli/command_handler.h b/src/cli/command_handler.h index 22a62076..635cf452 100644 --- a/src/cli/command_handler.h +++ b/src/cli/command_handler.h @@ -75,7 +75,7 @@ class ApplyPatch : public CommandHandler { // Apply patch std::vector patched; - core::ApplyBpsPatch(source, patch, patched); + app::core::ApplyBpsPatch(source, patch, patched); // Save patched file std::ofstream patched_rom("patched.sfc", std::ios::binary); @@ -92,7 +92,7 @@ class CreatePatch : public CommandHandler { std::vector target; std::vector patch; // Create patch - core::CreateBpsPatch(source, target, patch); + app::core::CreateBpsPatch(source, target, patch); // Save patch to file // std::ofstream patchFile("patch.bps", ios::binary);