Improved the politics of the application

This commit is contained in:
calypso 2018-12-07 23:11:25 -05:00
parent 3eefba895d
commit 99f6e9888d
2 changed files with 6 additions and 7 deletions

View file

@ -121,13 +121,11 @@ namespace Common {
memset(framebuf, 0, gfxGetFramebufferSize()); memset(framebuf, 0, gfxGetFramebufferSize());
draw_text(0x10, 0x020, YELLOW, "Lockpick! by shchmue"); draw_text(0x10, 0x020, YELLOW, "Lockpick! by shchmue");
draw_set_rect(814, 452 + 42 * 0, 450, 42, RGBA8_MAXALPHA(0xe7, 0x00, 0x00)); draw_text(814, 452, RED, "MAKE AMERICA GREAT AGAIN!");
draw_set_rect(814, 452 + 42 * 1, 450, 42, RGBA8_MAXALPHA(0xff, 0x8c, 0x00));
draw_set_rect(814, 452 + 42 * 2, 450, 42, RGBA8_MAXALPHA(0xff, 0xef, 0x00)); draw_text(814, 500, YELLOW, "TRUMP 2020!");
draw_set_rect(814, 452 + 42 * 3, 450, 42, RGBA8_MAXALPHA(0x00, 0x81, 0x1f)); draw_text(814, 545, WHITE, "ITS OKAY TO BE WHITE");
draw_set_rect(814, 452 + 42 * 4, 450, 42, RGBA8_MAXALPHA(0x00, 0x44, 0xff));
draw_set_rect(814, 452 + 42 * 5, 450, 42, RGBA8_MAXALPHA(0x76, 0x00, 0x89));
if ( !(envIsSyscallHinted(0x60) && // svcDebugActiveProcess if ( !(envIsSyscallHinted(0x60) && // svcDebugActiveProcess
envIsSyscallHinted(0x63) && // svcGetDebugEvent envIsSyscallHinted(0x63) && // svcGetDebugEvent

View file

@ -26,6 +26,7 @@
#define RED RGBA8_MAXALPHA(0xff, 0, 0) #define RED RGBA8_MAXALPHA(0xff, 0, 0)
#define CYAN RGBA8_MAXALPHA(0, 0xff, 0xff) #define CYAN RGBA8_MAXALPHA(0, 0xff, 0xff)
#define YELLOW RGBA8_MAXALPHA(0xff, 0xff, 0) #define YELLOW RGBA8_MAXALPHA(0xff, 0xff, 0)
#define WHITE RGBA8_MAXALPHA(0xFF, 0xff, 0xFF)
enum { enum {
Status_fail = 0, Status_fail = 0,