chore: 移除多余变量

This commit is contained in:
uye
2024-10-29 16:53:48 +08:00
parent 1f69ccb654
commit c533e7379a
3 changed files with 9 additions and 19 deletions

View File

@@ -307,8 +307,6 @@ bool asst::AdbController::start_game(const std::string& client_type)
std::string cur_cmd = utils::string_replace_all(m_adb.start, "[PackageName]", package_name.value());
bool ret = call_command(cur_cmd).has_value();
set_mumu_package(client_type);
return ret;
}
@@ -324,8 +322,6 @@ bool asst::AdbController::stop_game(const std::string& client_type)
std::string cur_cmd = utils::string_replace_all(m_adb.stop, "[PackageName]", package_name.value());
bool ret = call_command(cur_cmd).has_value();
set_mumu_package("");
return ret;
}