mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-12-27 03:31:49 +01:00
[Core/VDP] fixed typo
This commit is contained in:
parent
ab39975a02
commit
b9b4c16272
@ -478,7 +478,7 @@ INLINE void WRITE_LONG(void *address, uint32 data)
|
|||||||
|
|
||||||
/* 8:8:8 RGB */
|
/* 8:8:8 RGB */
|
||||||
#elif defined(USE_32BPP_RENDERING)
|
#elif defined(USE_32BPP_RENDERING)
|
||||||
#define MAKE_PIXEL(r,g,b) ((0xff < 24) | (r) << 20 | (r) << 16 | (g) << 12 | (g) << 8 | (b) << 4 | (b))
|
#define MAKE_PIXEL(r,g,b) ((0xff << 24) | (r) << 20 | (r) << 16 | (g) << 12 | (g) << 8 | (b) << 4 | (b))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Window & Plane A clipping */
|
/* Window & Plane A clipping */
|
||||||
|
Loading…
Reference in New Issue
Block a user