-fixed psp compilation
This commit is contained in:
wagic.the.homebrew
2009-01-29 13:49:00 +00:00
parent b14e6c318e
commit 2d37fafe53
3 changed files with 3 additions and 5 deletions
+2 -1
View File
@@ -16,7 +16,6 @@ int ExtraCost::setSource(MTGCardInstance * _source){
SacrificeCost::SacrificeCost(TargetChooser *_tc):ExtraCost(_tc){
target = NULL;
if (!tc) OutputDebugString("Self Sacrifice\n");
}
int SacrificeCost::setSource(MTGCardInstance * card){
@@ -111,8 +110,10 @@ int ExtraCosts::doPay(){
return result;
}
void ExtraCosts::Dump(){
#ifdef WIN32
char buf[4096];
OutputDebugString("=====\nDumping ExtraCosts=====\n");
sprintf(buf, "NbElements : %i\n", costs.size());
OutputDebugString(buf);
#endif
}