From: thedax Date: Thu, 1 Oct 2015 00:14:10 +0000 (-0400) Subject: Add an enum to make using the gsp::Lcd service a little nicer. X-Git-Tag: v0.6.0~12^2~2 X-Git-Url: https://chaos.moe/g/?a=commitdiff_plain;h=5426fba7428fcb5554dbbea1dbd3383c2cdac5f3;p=corbenik%2Fctrulib.git Add an enum to make using the gsp::Lcd service a little nicer. --- 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();