Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-03-08 15:24:31 +0000
committerStijn Buys <ingar@osirion.org>2008-03-08 15:24:31 +0000
commitb56c5b7a6fa8330b09bb65f270b5a6a7281367d3 (patch)
tree08daf9c890a11ba5451bc2276b7bda4686951bf0 /src/game/game.cc
parent343896eeaa97009fb06096dc5bcc097bf1bd287d (diff)
gcc 4.2 fixes
Diffstat (limited to 'src/game/game.cc')
-rw-r--r--src/game/game.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/game.cc b/src/game/game.cc
index 290b80c..fda9569 100644
--- a/src/game/game.cc
+++ b/src/game/game.cc
@@ -131,7 +131,7 @@ void Game::init()
while (f.getline()) {
if (f.got_key()) {
- if (f.section() == "star") {
+ if (f.section().compare("start") == 0) {
if (f.got_key_string("name", tmp)) {
star->entity_name = tmp;
@@ -155,7 +155,7 @@ void Game::init()
} else
con_warn << f.name() << " unknown key '" << f.key() << "' at line " << f.line() << std::endl;
- } else if (f.section() == "entity") {
+ } else if (f.section().compare("entity") == 0) {
if (f.got_key_string("name", tmp)) {
entity->entity_name = tmp;