MEGA FAIL

This reverts commit 9d985a7417.
This commit is contained in:
tildearrow 2024-06-21 23:32:14 -05:00
parent 9d985a7417
commit b9e14e8b1f
3 changed files with 2 additions and 7 deletions

View file

@ -4141,7 +4141,3 @@ bool DivEngine::quit(bool saveConfig) {
song.unload();
return true;
}
void DivEngine::youre_a_stinky_butt() {
abort();
}

View file

@ -582,7 +582,6 @@ class DivEngine {
bool shallSwitchCores();
void testFunction();
void youre_a_stinky_butt();
bool loadDMF(unsigned char* file, size_t len);
bool loadFur(unsigned char* file, size_t len, int variantID=0);

View file

@ -82,8 +82,8 @@ void FurnaceGUI::drawDebug() {
if (ImGui::Button("Panic")) e->syncReset();
ImGui::SameLine();
if (ImGui::Button("Abort (halts program)")) {
e->youre_a_stinky_butt();
if (ImGui::Button("Abort")) {
abort();
}
ImGui::TreePop();
}