This commit is contained in:
Glenn Maynard
2007-08-15 20:38:10 +00:00
parent 83d64246d9
commit 3509dfee03
+1 -1
View File
@@ -111,7 +111,7 @@ int power_of_two( int iInput )
{ {
int iValue = 1; int iValue = 1;
while ( iValue < iInput ) while( iValue < iInput )
iValue <<= 1; iValue <<= 1;
return iValue; return iValue;