psp comp fix, I was not able to test it though as i am not set up to comp psp builds anymore.

This commit is contained in:
omegablast2002@yahoo.com
2013-05-11 00:48:21 +00:00
parent 9f6a728150
commit f6f75ca660

View File

@@ -203,7 +203,9 @@ WCFilterSet::WCFilterSet(string arg)
string WCFilterSet::getCode()
{
char buf[256];
sprintf(buf, "set:%s;", _(setlist[setid].c_str()));
string setName = setlist[setid];
setName = _(setName);
sprintf(buf, "set:%s;", setName.c_str());
return buf;
}
;