summaryrefslogtreecommitdiffhomepage
path: root/StarsEx
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-05 19:52:06 +0200
committerAki <please@ignore.pl>2022-04-05 19:52:06 +0200
commitf65b3121cd0f0a68e17c0dba4069e66be2d904b4 (patch)
tree1bba2be44d5f4c7a8890b869ca8862014f35dab3 /StarsEx
parentc2cce90d1a5d17e409d121334ad6412faa8ad18c (diff)
downloadstarshatter-f65b3121cd0f0a68e17c0dba4069e66be2d904b4.zip
starshatter-f65b3121cd0f0a68e17c0dba4069e66be2d904b4.tar.gz
starshatter-f65b3121cd0f0a68e17c0dba4069e66be2d904b4.tar.bz2
Removed unused OnHelp method
Diffstat (limited to 'StarsEx')
-rw-r--r--StarsEx/Game.h1
-rw-r--r--StarsEx/Starshatter.cpp10
-rw-r--r--StarsEx/Starshatter.h1
3 files changed, 0 insertions, 12 deletions
diff --git a/StarsEx/Game.h b/StarsEx/Game.h
index 6f5936e..7469657 100644
--- a/StarsEx/Game.h
+++ b/StarsEx/Game.h
@@ -45,7 +45,6 @@ public:
virtual int Run();
virtual void Exit();
virtual bool OnPaint() { return false; }
- virtual bool OnHelp() { return false; }
virtual int GetGameMode() const { return game_mode; }
virtual void SetGameMode(int mode) { game_mode = mode; }
diff --git a/StarsEx/Starshatter.cpp b/StarsEx/Starshatter.cpp
index cc36461..65c7d13 100644
--- a/StarsEx/Starshatter.cpp
+++ b/StarsEx/Starshatter.cpp
@@ -323,16 +323,6 @@ Starshatter::Exit()
// +--------------------------------------------------------------------+
-bool
-Starshatter::OnHelp()
-{
- WebBrowser browser;
- browser.OpenURL("http://matrixgames.com/support");
- return true;
-}
-
-// +--------------------------------------------------------------------+
-
void
Starshatter::MapKeys()
{
diff --git a/StarsEx/Starshatter.h b/StarsEx/Starshatter.h
index 75f5d0d..ca30124 100644
--- a/StarsEx/Starshatter.h
+++ b/StarsEx/Starshatter.h
@@ -52,7 +52,6 @@ public:
virtual bool ChangeVideo();
virtual void GameState();
virtual void Exit();
- virtual bool OnHelp();
enum LOBBY { NET_LOBBY_CLIENT,
NET_LOBBY_SERVER