mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-26 22:43:01 +00:00
sure
This commit is contained in:
parent
e1772642b8
commit
9d985a7417
3 changed files with 7 additions and 2 deletions
|
@ -4141,3 +4141,7 @@ bool DivEngine::quit(bool saveConfig) {
|
|||
song.unload();
|
||||
return true;
|
||||
}
|
||||
|
||||
void DivEngine::youre_a_stinky_butt() {
|
||||
abort();
|
||||
}
|
||||
|
|
|
@ -582,6 +582,7 @@ 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);
|
||||
|
|
|
@ -82,8 +82,8 @@ void FurnaceGUI::drawDebug() {
|
|||
|
||||
if (ImGui::Button("Panic")) e->syncReset();
|
||||
ImGui::SameLine();
|
||||
if (ImGui::Button("Abort")) {
|
||||
abort();
|
||||
if (ImGui::Button("Abort (halts program)")) {
|
||||
e->youre_a_stinky_butt();
|
||||
}
|
||||
ImGui::TreePop();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue