aboutsummaryrefslogtreecommitdiffstats
path: root/demos/3rdparty/notepad-2/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/3rdparty/notepad-2/main.c')
-rw-r--r--demos/3rdparty/notepad-2/main.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/demos/3rdparty/notepad-2/main.c b/demos/3rdparty/notepad-2/main.c
index e4649146..05481b18 100644
--- a/demos/3rdparty/notepad-2/main.c
+++ b/demos/3rdparty/notepad-2/main.c
@@ -38,7 +38,7 @@
const NColorScheme schemeDefault = {
.titleBarColor = HTML2COLOR(0x3064D8),
- .titleTextColor = White,
+ .titleTextColor = GFX_WHITE,
.winBgColor = HTML2COLOR(0xFFECB0),
.drawingWinBorder = HTML2COLOR(0xCEBA77),
@@ -53,7 +53,7 @@ const NColorScheme schemeDefault = {
const NColorScheme schemeDefault2 = {
.titleBarColor = HTML2COLOR(0x3064D8),
- .titleTextColor = White,
+ .titleTextColor = GFX_WHITE,
.winBgColor = HTML2COLOR(0xC8D8F8),
.drawingWinBorder = HTML2COLOR(0x8098E0),
@@ -91,9 +91,9 @@ int main(void) {
gfxThreadWait(nLaunchNotepadApp());
gdispSetClip(0, 0, gdispGetWidth(), gdispGetHeight());
- gdispClear(Black);
- gdispDrawString(3, 3, "Notepad Terminated.", font, White);
- gdispDrawString(3, 20, "Relaunching Notepad App...", font, White);
+ gdispClear(GFX_BLACK);
+ gdispDrawString(3, 3, "Notepad Terminated.", font, GFX_WHITE);
+ gdispDrawString(3, 20, "Relaunching Notepad App...", font, GFX_WHITE);
gfxSleepMilliseconds(1000);
}