mirror of
https://github.com/Pecusx/libretro-atari800.git
synced 2026-05-20 22:33:22 +02:00
Add Ps2 Support
This commit is contained in:
@@ -59,8 +59,12 @@ extern int pauseg;
|
||||
#ifndef RENDER16B
|
||||
#define RGB565(r, g, b) (((r) << (5+16)) | ((g) << (5+8)) | (b<<5))
|
||||
#else
|
||||
#if defined(ABGR1555)
|
||||
#define RGB565(r, g, b) (((b) << (10)) | ((g) << 5) | (r))
|
||||
#else
|
||||
#define RGB565(r, g, b) (((r) << (5+6)) | ((g) << 6) | (b))
|
||||
#endif
|
||||
#endif
|
||||
#define uint32 unsigned int
|
||||
#define uint8 unsigned char
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user