From 1b5616688ea64e1b32783dddcde22e7447a742ef Mon Sep 17 00:00:00 2001 From: aap Date: Sun, 26 Apr 2020 21:50:52 +0200 Subject: tried to fix some half-pixel bugs --- src/core/common.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/core/common.h') diff --git a/src/core/common.h b/src/core/common.h index 2cc3d98c..0b4686d8 100644 --- a/src/core/common.h +++ b/src/core/common.h @@ -31,6 +31,7 @@ #define HIERNODEID(hier, i) ((hier)->nodeInfo[i].id) #define HANIMFRAMES(anim) ((anim)->keyframes) #else +#define RWHALFPIXEL // always d3d #define STREAMPOS(str) ((str)->Type.memory.position) #define STREAMFILE(str) ((str)->Type.file.fpFile) #define HIERNODEINFO(hier) ((hier)->pNodeInfo) @@ -38,6 +39,12 @@ #define HANIMFRAMES(anim) ((anim)->pFrames) #endif +#ifdef RWHALFPIXEL +#define HALFPX (0.5f) +#else +#define HALFPX (0.0f) +#endif + #define rwVENDORID_ROCKSTAR 0x0253F2 // Get rid of bullshit windows definitions, we're not running on an 8086 -- cgit v1.2.3