X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Flib%2Fint.qh;h=9bd129b9e1f726fc27a4b05b393abd62a269427a;hb=b683bf23a495d3b1b3f6df3bda75bfe0f069ab05;hp=d9ea61f0c8f3be1f76c368f4119b22a081a71d9a;hpb=21307f327df5609b82d90496c1c6156d636d1c8d;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/lib/int.qh b/qcsrc/lib/int.qh index d9ea61f0c..9bd129b9e 100644 --- a/qcsrc/lib/int.qh +++ b/qcsrc/lib/int.qh @@ -2,13 +2,13 @@ #define INT_H #ifndef QCC_SUPPORT_INT - #define stoi(s) stof(s) - #define stob(s) stof(s) - #define itos(i) ftos(i) + #define stoi(s) stof(s) + #define stob(s) stof(s) + #define itos(i) ftos(i) #else - #define stoi(s) ((int) stof(s)) - #define stob(s) ((bool) stof(s)) - #define itos(i) ftos(i) + #define stoi(s) ((int) stof(s)) + #define stob(s) ((bool) stof(s)) + #define itos(i) ftos(i) #endif #endif