summaryrefslogtreecommitdiffhomepage
path: root/Stars45/AwardDlg.cpp
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-02-28 22:49:18 +0100
committerAki <please@ignore.pl>2022-02-28 22:49:18 +0100
commitc376af320ebd9d9e435ef3003dd35136dbd71ae8 (patch)
tree224ef8cdd3390260ed97d8278d1223d0494016c8 /Stars45/AwardDlg.cpp
parent724c36ea74dc6f2dfc097c45825c06df7756e058 (diff)
downloadstarshatter-c376af320ebd9d9e435ef3003dd35136dbd71ae8.zip
starshatter-c376af320ebd9d9e435ef3003dd35136dbd71ae8.tar.gz
starshatter-c376af320ebd9d9e435ef3003dd35136dbd71ae8.tar.bz2
Replaced old panic mechanism uses with the new one
This will allow to split the functionality even further. I predict that at some point they I will start joining them up together once again, but for now I need them to be isolated.
Diffstat (limited to 'Stars45/AwardDlg.cpp')
-rw-r--r--Stars45/AwardDlg.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/Stars45/AwardDlg.cpp b/Stars45/AwardDlg.cpp
index 631531f..46daf2a 100644
--- a/Stars45/AwardDlg.cpp
+++ b/Stars45/AwardDlg.cpp
@@ -30,6 +30,7 @@
#include "Keyboard.h"
#include "Mouse.h"
#include "Sound.h"
+#include "Panic.h"
// +--------------------------------------------------------------------+
// DECLARE MAPPING FUNCTIONS:
@@ -147,5 +148,5 @@ AwardDlg::OnClose(AWEvent* event)
}
else
- Game::Panic("AwardDlg::OnClose() - Game instance not found");
+ Panic::Panic("AwardDlg::OnClose() - Game instance not found");
}