summaryrefslogtreecommitdiffhomepage
path: root/Stars45/Game.h
diff options
context:
space:
mode:
Diffstat (limited to 'Stars45/Game.h')
-rw-r--r--Stars45/Game.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/Stars45/Game.h b/Stars45/Game.h
index 1be7170..4e691de 100644
--- a/Stars45/Game.h
+++ b/Stars45/Game.h
@@ -41,7 +41,7 @@ class Game : public ApplicationDX9
{
public:
static const char* TYPENAME() { return "Game"; }
- enum STATUS { OK, RUN, EXIT, PANIC, INIT_FAILED, TOO_MANY };
+ enum STATUS { OK, RUN, EXIT, INIT_FAILED, TOO_MANY };
Game();
virtual ~Game();
@@ -67,8 +67,6 @@ public:
//
static Game* GetInstance();
- static void Panic(const char* msg=0);
- static const char* GetPanicMessage() { return panicbuf; }
bool DisplayModeSupported(int w, int h, int bpp);
int MaxTexSize();
@@ -192,8 +190,6 @@ protected:
double max_frame_length;
double min_frame_length;
-
- static char panicbuf[256];
};
// +--------------------------------------------------------------------+