mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-28 09:59:41 -06:00
18-bit graphics pipeline
(final buffer is 32-bit)
This commit is contained in:
8
main.cpp
8
main.cpp
@ -216,11 +216,11 @@ int main()
|
||||
bmp.bV4Width = 256;
|
||||
bmp.bV4Height = -384;
|
||||
bmp.bV4Planes = 1;
|
||||
bmp.bV4BitCount = 16;
|
||||
bmp.bV4BitCount = 32;
|
||||
bmp.bV4V4Compression = BI_RGB|BI_BITFIELDS;
|
||||
bmp.bV4RedMask = 0x001F;
|
||||
bmp.bV4GreenMask = 0x03E0;
|
||||
bmp.bV4BlueMask = 0x7C00;
|
||||
bmp.bV4RedMask = 0x000000FF;
|
||||
bmp.bV4GreenMask = 0x0000FF00;
|
||||
bmp.bV4BlueMask = 0x00FF0000;
|
||||
|
||||
NDS::Init();
|
||||
|
||||
|
Reference in New Issue
Block a user