7
mirror of https://gitlab.com/kicad/code/kicad.git synced 2025-04-07 17:15:31 +00:00

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

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 ) )