parent
9d985a7417
commit
b9e14e8b1f
|
@ -4141,7 +4141,3 @@ bool DivEngine::quit(bool saveConfig) {
|
||||||
song.unload();
|
song.unload();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void DivEngine::youre_a_stinky_butt() {
|
|
||||||
abort();
|
|
||||||
}
|
|
||||||
|
|
|
@ -582,7 +582,6 @@ class DivEngine {
|
||||||
bool shallSwitchCores();
|
bool shallSwitchCores();
|
||||||
|
|
||||||
void testFunction();
|
void testFunction();
|
||||||
void youre_a_stinky_butt();
|
|
||||||
|
|
||||||
bool loadDMF(unsigned char* file, size_t len);
|
bool loadDMF(unsigned char* file, size_t len);
|
||||||
bool loadFur(unsigned char* file, size_t len, int variantID=0);
|
bool loadFur(unsigned char* file, size_t len, int variantID=0);
|
||||||
|
|
|
@ -82,8 +82,8 @@ void FurnaceGUI::drawDebug() {
|
||||||
|
|
||||||
if (ImGui::Button("Panic")) e->syncReset();
|
if (ImGui::Button("Panic")) e->syncReset();
|
||||||
ImGui::SameLine();
|
ImGui::SameLine();
|
||||||
if (ImGui::Button("Abort (halts program)")) {
|
if (ImGui::Button("Abort")) {
|
||||||
e->youre_a_stinky_butt();
|
abort();
|
||||||
}
|
}
|
||||||
ImGui::TreePop();
|
ImGui::TreePop();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue