mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-10 21:05:12 +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 */
|
||||
#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
|
||||
|
||||
/* Window & Plane A clipping */
|
||||
|
Loading…
Reference in New Issue
Block a user