diff options
author | Dennis Friis <peavey@inspircd.org> | 2009-05-17 05:13:29 +0200 |
---|---|---|
committer | Dennis Friis <peavey@inspircd.org> | 2009-05-17 05:13:29 +0200 |
commit | 9b4d924d74587f489ac8141134b1c504e54a0684 (patch) | |
tree | 3d65081156776ea5f2c9f325995f57f67936c139 /src/main.cpp | |
parent | 5dc6cd75cbf3d88988871af226d2a9be79b1b2a0 (diff) | |
download | mana-9b4d924d74587f489ac8141134b1c504e54a0684.tar.gz mana-9b4d924d74587f489ac8141134b1c504e54a0684.tar.bz2 mana-9b4d924d74587f489ac8141134b1c504e54a0684.tar.xz mana-9b4d924d74587f489ac8141134b1c504e54a0684.zip |
Init state variable to make valgrind happy.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 3c98ed27..bc010d30 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -161,7 +161,7 @@ extern Net::Connection *accountServerConnection; Graphics *graphics; Game *game = 0; -unsigned char state; +unsigned char state = STATE_NULL; std::string errorMessage; Sound sound; |