now that the types have been converted, revert some that shouldn't have been

This commit is contained in:
Mitchell Livingston
2008-11-02 14:04:57 +00:00
parent 9814920756
commit c9e5427ed6
5 changed files with 7 additions and 7 deletions

View File

@@ -116,7 +116,7 @@
}
int8_t * pieces = NULL;
CGFloat * piecesPercent = NULL;
float * piecesPercent = NULL;
BOOL showAvailablity = [[NSUserDefaults standardUserDefaults] boolForKey: @"PiecesViewShowAvailability"];
if (showAvailablity)
@@ -126,7 +126,7 @@
}
else
{
piecesPercent = (CGFloat *)tr_malloc(fNumPieces * sizeof(CGFloat));
piecesPercent = (float *)tr_malloc(fNumPieces * sizeof(float));
[fTorrent getAmountFinished: piecesPercent size: fNumPieces];
}