diff options
| author | Steven Fuller <relnev@icculus.org> | 2001-07-12 17:22:07 +0000 |
|---|---|---|
| committer | Patryk Obara <dreamer.tan@gmail.com> | 2019-08-20 02:22:36 +0200 |
| commit | 936a5198e46e3c7a8f72959373a69336b1697e76 (patch) | |
| tree | 4df06c2e582f753039e52a72e6c0e0f3b6cd6fd1 /src/win95/inline.h | |
| parent | 1fcf3c028ae1eb5072e70fa0a8a856dfbfae595b (diff) | |
lots of small changes that didn't get checked in
Diffstat (limited to 'src/win95/inline.h')
| -rw-r--r-- | src/win95/inline.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/win95/inline.h b/src/win95/inline.h index 30b7faa..719daf3 100644 --- a/src/win95/inline.h +++ b/src/win95/inline.h @@ -1228,7 +1228,9 @@ int NarrowDivide(LONGLONGCH *a, int b); int WideMulNarrowDiv(int a, int b, int c); void RotateVector_ASM(VECTORCH *v, MATRIXCH *m); void RotateAndCopyVector_ASM(VECTORCH *v1, VECTORCH *v2, MATRIXCH *m); -int f2i(float f); + +int FloatToInt(float); +#define f2i(a, b) { a = FloatToInt(b); } #endif |
