added manual crash trigger for handling testing

This commit is contained in:
itsmattkc
2021-09-30 16:04:57 -07:00
parent 4540304222
commit 34004bbf10
3 changed files with 35 additions and 1 deletions
+12
View File
@@ -104,6 +104,16 @@ public:
startup_language_ = s;
}
bool crash_on_startup() const
{
return crash_;
}
void set_crash_on_startup(bool e)
{
crash_ = true;
}
private:
RunMode mode_;
@@ -113,6 +123,8 @@ public:
bool run_fullscreen_;
bool crash_;
};
/**