summaryrefslogtreecommitdiffstats
path: root/engine/include/exceptions/forcequit.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'engine/include/exceptions/forcequit.hpp')
-rw-r--r--engine/include/exceptions/forcequit.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engine/include/exceptions/forcequit.hpp b/engine/include/exceptions/forcequit.hpp
index 451190e..336b9c0 100644
--- a/engine/include/exceptions/forcequit.hpp
+++ b/engine/include/exceptions/forcequit.hpp
@@ -3,9 +3,9 @@
namespace flat {
struct ForceQuit {
- const char * reason;
+ const char * m_reason;
- ForceQuit(const char *reason) : reason(reason) {}
+ ForceQuit(const char *reason) : m_reason(reason) {}
};
}