mirror of
https://github.com/jmarshall23/CnC_Remastered_Collection.git
synced 2026-08-12 08:00:55 +02:00
Inline assembly is now replaced with C.
This commit is contained in:
@@ -361,7 +361,7 @@ class BooleanVectorClass
|
||||
int First_False(void) const {
|
||||
if (LastIndex != -1) Fixup(-1);
|
||||
|
||||
int retval = First_False_Bit(&BitArray[0]);
|
||||
int retval = First_False_Bit(&BitArray[0], BitArray.Length());
|
||||
if (retval < BitCount) return(retval);
|
||||
|
||||
/*
|
||||
@@ -375,7 +375,7 @@ class BooleanVectorClass
|
||||
int First_True(void) const {
|
||||
if (LastIndex != -1) Fixup(-1);
|
||||
|
||||
int retval = First_True_Bit(&BitArray[0]);
|
||||
int retval = First_True_Bit(&BitArray[0], BitArray.Length());
|
||||
if (retval < BitCount) return(retval);
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user