Fix compilation errors and warnings with the Android build.

This commit is contained in:
David Reid
2017-11-18 11:28:06 +10:00
parent 3bf830079f
commit ce05440620
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -119,7 +119,7 @@ s32->s24 {
# r = ((x + 2147483648) * 0.0000000004656612873077392578125) - 1
s32->f32 {
dbl t;
add (dbl)t x 2147483648;
add (dbl)t x 2147483648LL;
mul t t 0.0000000004656612873077392578125;
sub (flt)r t 1;
}
@@ -159,5 +159,5 @@ f32->s32 {
clip c x;
add c c 1;
mul (lng)t c 2147483647.5;
sub (int)r t 2147483648;
sub (int)r t 2147483648LL;
}