From 5426fba7428fcb5554dbbea1dbd3383c2cdac5f3 Mon Sep 17 00:00:00 2001 From: thedax Date: Wed, 30 Sep 2015 20:14:10 -0400 Subject: [PATCH] Add an enum to make using the gsp::Lcd service a little nicer. --- libctru/include/3ds/services/gsp.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/libctru/include/3ds/services/gsp.h b/libctru/include/3ds/services/gsp.h index e80effc..dfd8794 100644 --- a/libctru/include/3ds/services/gsp.h +++ b/libctru/include/3ds/services/gsp.h @@ -48,6 +48,13 @@ typedef enum GSPEVENT_MAX, // used to know how many events there are } GSP_Event; +typedef enum +{ + GSPLCD_TOP=1, + GSPLCD_BOTTOM=2, + GSPLCD_BOTH=3, +}GSPLCD_Screens; + Result gspInit(); void gspExit();