- minor tweaks:

-- Res is the default folder in Res.txt, in case it exists, to avoid confusion when debugging
-- added sign_prx in the makefile, harmless if you have the default build.mak, but signs the app for you if you have the correct files
-- uninitialized variable warning fixed in Rules.cpp
This commit is contained in:
wagic.the.homebrew
2011-07-10 07:55:08 +00:00
parent acca910248
commit bf4e0d8908
3 changed files with 3 additions and 2 deletions

View File

@@ -133,7 +133,7 @@ void RulesState::parsePlayerState(int playerId, string s)
size_t limiter = s.find("=");
if (limiter == string::npos) limiter = s.find(":");
string areaS;
int area;
int area = -1;
if (limiter != string::npos)
{
areaS = s.substr(0, limiter);