diff options
author | Philipp Sehmisch <crush@themanaworld.org> | 2009-02-10 17:39:17 +0100 |
---|---|---|
committer | Philipp Sehmisch <crush@themanaworld.org> | 2009-02-10 17:39:17 +0100 |
commit | 9b4febf79ecd220807d4a462d5945aa0aa561269 (patch) | |
tree | 42c9c5d472ce812f69da98938667df415c8450c2 /src/main.cpp | |
parent | d5d8b2f29c8bd776d4c9fb1fad2af8232f59a1ab (diff) | |
download | mana-9b4febf79ecd220807d4a462d5945aa0aa561269.tar.gz mana-9b4febf79ecd220807d4a462d5945aa0aa561269.tar.bz2 mana-9b4febf79ecd220807d4a462d5945aa0aa561269.tar.xz mana-9b4febf79ecd220807d4a462d5945aa0aa561269.zip |
Fixed some accidental capitalization errors
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index 209157b4..42f73eef 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -135,7 +135,7 @@ CharServerHandler charServerHandler; LoginData loginData; LockedArray<LocalPlayer*> charInfo(MAX_SLOT + 1); -color *textcolor; +Color *textColor; // This anonymous namespace hides whatever is inside from other modules. namespace { @@ -760,7 +760,7 @@ int main(int argc, char *argv[]) unsigned int oldstate = !state; // We start with a status change. // Needs to be created in main, as the updater uses it - textcolor = new color(); + textColor = new Color(); Game *game = NULL; Window *currentDialog = NULL; @@ -1095,7 +1095,7 @@ int main(int argc, char *argv[]) usleep(50000); } - delete textcolor; + delete textColor; #ifdef PACKAGE_VERSION delete versionLabel; #endif |