summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 454885d9..19e95520 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -103,8 +103,8 @@ int main(int argc, char *argv[])
//connectionHandler->registerHandler(C2S_LOGIN, accountHandler);
printf("The Mana World Server v0.0.1\n");
- printf("Listening...\n");
session->startListen(connectionHandler, SERVER_PORT);
+ printf("Listening on port %d...\n", SERVER_PORT);
SDL_Event event;
@@ -131,8 +131,8 @@ int main(int argc, char *argv[])
}
}
- // We know about only about 10 events will happen per second, so give
- // the CPU a break for a while.
+ // We know only about 10 events will happen per second,
+ // so give the CPU a break for a while.
SDL_Delay(100);
}