decompile title screen

This commit is contained in:
DizzyEggg
2018-02-04 16:11:00 +01:00
parent eb6aed50e5
commit 0c60ffe22a
16 changed files with 836 additions and 1496 deletions
+1
View File
@@ -2,6 +2,7 @@
#define GUARD_RGB_H
#define RGB(r, g, b) ((r) | ((g) << 5) | ((b) << 10))
#define _RGB(r, g, b) ((((b) & 0x1F) << 10) + (((g) & 0x1F) << 5) + ((r) & 0x1F))
#define RGB_BLACK RGB(0, 0, 0)
#define RGB_WHITE RGB(31, 31, 31)