clean up pr

This commit is contained in:
Dmugetsu 2025-02-21 20:55:37 -06:00
parent 78d5d265bb
commit f952dcf035
2 changed files with 0 additions and 10 deletions

View File

@ -289,14 +289,6 @@ void Emulator::Run(const std::filesystem::path& file, const std::vector<std::str
std::quick_exit(0); std::quick_exit(0);
} }
void Emulator::saveLastEbootPath(const std::string& path) {
lastEbootPath = path;
}
std::string Emulator::getLastEbootPath() const {
return lastEbootPath;
}
Emulator& Emulator::GetInstance() { Emulator& Emulator::GetInstance() {
static Emulator instance; static Emulator instance;
return instance; return instance;

View File

@ -88,7 +88,6 @@ public:
} }
void WaitEvent(); void WaitEvent();
void OnStopButtonClicked();
void RelaunchEmulator(); void RelaunchEmulator();
void InitTimers(); void InitTimers();
@ -108,7 +107,6 @@ private:
SDL_Window* window{}; SDL_Window* window{};
bool is_shown{}; bool is_shown{};
bool is_open{true}; bool is_open{true};
bool stopButtonClicked = false;
}; };
} // namespace Frontend } // namespace Frontend