diff options
author | Ira Rice <irarice@gmail.com> | 2008-10-26 01:21:02 +0000 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2008-10-26 01:21:02 +0000 |
commit | d9c8c729a1dc2f18c1a367eddfd2eb94b79ec190 (patch) | |
tree | ece76733c151830b8e1362eb708b0399fb15e3c3 | |
parent | 6429efce8c5b17caf492adeba7d37a71fa3c4776 (diff) | |
download | mana-d9c8c729a1dc2f18c1a367eddfd2eb94b79ec190.tar.gz mana-d9c8c729a1dc2f18c1a367eddfd2eb94b79ec190.tar.bz2 mana-d9c8c729a1dc2f18c1a367eddfd2eb94b79ec190.tar.xz mana-d9c8c729a1dc2f18c1a367eddfd2eb94b79ec190.zip |
Fixed some compile errors that occured from restructuring.
-rw-r--r-- | src/main.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index b57027d6..d41acba0 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -156,6 +156,7 @@ struct Options std::string playername; std::string configPath; std::string updateHost; + std::string dataPath; }; /** @@ -442,14 +443,14 @@ void printHelp() << " -C --configfile : Configuration file to use" << std::endl << " -d --data : Directory to load game data from" << std::endl << " -D --default : Bypass the login process with default " - "settings" << std::endl + "settings" << std::endl << " -h --help : Display this help" << std::endl - << " -H --updatehost : Use this update host" << std::endl; + << " -H --updatehost : Use this update host" << std::endl << " -p --playername : Login with this player" << std::endl << " -P --password : Login with this password" << std::endl << " -u --skipupdate : Skip the update downloads" << std::endl << " -U --username : Login with this username" << std::endl - << " -v --version : Display the version" << std::endl + << " -v --version : Display the version" << std::endl; } void printVersion() |