1
0
mirror of synced 2024-11-14 19:17:42 +01:00

fix: Compile error

This commit is contained in:
WerWolv 2024-03-01 18:37:28 +01:00
parent 4a118b94cc
commit 4b64e044f7

View File

@ -15,7 +15,7 @@ namespace hex::plugin::builtin {
PopupCrashRecovered(const std::exception &e)
: hex::Popup<PopupCrashRecovered>("hex.builtin.popup.crash_recover.title", false),
m_errorType(typeid(e).name()),
m_errorMessage(e.what) { }
m_errorMessage(e.what()) { }
void drawContent() override {
ImGuiExt::TextFormattedWrapped("hex.builtin.popup.crash_recover.message"_lang);