- added more debug statements to try to track beta bugs

- added safer customization of ini files
- added ability to customize game keys
- added more error checking for ogg file loading
- added faction loader progress
- added a few more thread protections on custom menu
This commit is contained in:
Mark Vejvoda
2010-06-12 18:27:39 +00:00
parent 25bc515466
commit 085d4e4bfe
25 changed files with 538 additions and 125 deletions

View File

@@ -16,7 +16,7 @@
using std::string;
namespace Shared{ namespace Util{
namespace Shared { namespace Util {
bool strToBool(const string &s);
int strToInt(const string &s);
@@ -32,6 +32,8 @@ string intToHex(int i);
string floatToStr(float f,int precsion=2);
string doubleToStr(double f,int precsion=2);
bool IsNumeric(const char *p, bool allowNegative=true);
}}//end namespace
#endif