Fix cardinal sin of macro definitions.

This commit is contained in:
Jeff Young 2022-02-02 18:18:27 +00:00
parent c8d14ade65
commit b070914216
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@
#include <callback_gal.h>
#define TO_3DU( x ) ( x * m_biuTo3Dunits )
#define TO_3DU( x ) ( ( x ) * m_biuTo3Dunits )
#define TO_SFVEC2F( vec ) SFVEC2F( TO_3DU( vec.x ), TO_3DU( -vec.y ) )