J :
* Fix PSP compilation errors * This does not magically make it work
This commit is contained in:
@@ -168,7 +168,7 @@ int GuiMana::receiveEventMinus(WEvent* e)
|
||||
if ((event->color == (*it)->color) && (ManaIcon::ALIVE == (*it)->mode)) { (*it)->Wither(); return 1; }
|
||||
return 1;
|
||||
}
|
||||
else if (WEventEmptyManaPool *event = dynamic_cast<WEventEmptyManaPool*>(e))
|
||||
else if (dynamic_cast<WEventEmptyManaPool*>(e))
|
||||
{
|
||||
for (vector<ManaIcon*>::iterator it = manas.begin(); it != manas.end(); ++it)
|
||||
(*it)->Drop(); //TODO: split according to which manapool was emptied...
|
||||
|
||||
Reference in New Issue
Block a user