summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2004-12-28 17:28:21 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2004-12-28 17:28:21 +0000
commitff63c0e4a73f56558de77f255765e68b662008f6 (patch)
tree348aed36d6824fd60bf5e9fd8c6f0a0c7730b28f /src/main.cpp
parentc962acb281f41830a52df7c1888f92658aaf2700 (diff)
downloadmana-client-ff63c0e4a73f56558de77f255765e68b662008f6.tar.gz
mana-client-ff63c0e4a73f56558de77f255765e68b662008f6.tar.bz2
mana-client-ff63c0e4a73f56558de77f255765e68b662008f6.tar.xz
mana-client-ff63c0e4a73f56558de77f255765e68b662008f6.zip
Make stats window display numbers instead of characters.
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 20206e6b..07eafbf0 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -276,15 +276,15 @@ int main() {
init_engine();
// initialize sound-engine and start playing intro-theme /-kth5
try {
- if(config.getValue("sound", 0)==1)
- sound.Init(32,20);
- sound.SetVol(128,128,128);
- } catch(const char * err) {
+ if (config.getValue("sound", 0) == 1)
+ sound.Init(32, 20);
+ sound.SetVol(128, 128, 128);
+ } catch (const char *err) {
ok("Sound Engine", err);
warning(err);
}
- while(state!=EXIT) {
+ while (state != EXIT) {
switch(state) {
case LOGIN:
status("LOGIN");