summaryrefslogtreecommitdiffhomepage
path: root/StarsEx/Game.cpp
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2022-04-06 21:52:10 +0200
committerAki <please@ignore.pl>2022-04-06 21:54:35 +0200
commitb607369386ed3c410f9721a43b6145c9456af479 (patch)
treeacdf5539b55a46af71e7baf0c27c9c471b17d0f9 /StarsEx/Game.cpp
parent4d7ca74c55edff30e34df1c36824a128211bfeb8 (diff)
downloadstarshatter-b607369386ed3c410f9721a43b6145c9456af479.zip
starshatter-b607369386ed3c410f9721a43b6145c9456af479.tar.gz
starshatter-b607369386ed3c410f9721a43b6145c9456af479.tar.bz2
Removed member variable used to indicate server instance
Diffstat (limited to 'StarsEx/Game.cpp')
-rw-r--r--StarsEx/Game.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/StarsEx/Game.cpp b/StarsEx/Game.cpp
index 54f9204..8530126 100644
--- a/StarsEx/Game.cpp
+++ b/StarsEx/Game.cpp
@@ -33,7 +33,6 @@ Game::Game() :
game_mode {MENU_MODE},
active {false},
paused {false},
- server {false},
show_mouse {false},
frame_number {0}
{
@@ -78,9 +77,6 @@ Game::Init(HINSTANCE hi, HINSTANCE hpi, LPSTR cmdline, int nCmdShow)
bool
Game::InitGame()
{
- if (server) {
- Print(" InitGame() - server mode.\n");
- }
return true;
}