From c8f2ce4027bfcd820be34ae1a31e33ccc6551d92 Mon Sep 17 00:00:00 2001 From: Julian Hinxlage Date: Thu, 7 Nov 2019 12:54:39 +0100 Subject: [PATCH] + fixed internal.h incude --- src/Color.h | 4 ++-- src/KeyCode.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Color.h b/src/Color.h index 3d75e99..b01a9c6 100644 --- a/src/Color.h +++ b/src/Color.h @@ -19,7 +19,7 @@ public: }; -const Color black = Color(0, 0, 0); -const Color white = Color(255, 255, 255); +const static Color black = Color(0, 0, 0); +const static Color white = Color(255, 255, 255); #endif diff --git a/src/KeyCode.h b/src/KeyCode.h index 65ab74d..a59a5cd 100644 --- a/src/KeyCode.h +++ b/src/KeyCode.h @@ -9,7 +9,7 @@ public: int getValue(); }; -const KeyCode Backspace = KeyCode(8); -const KeyCode tabulator = KeyCode(9); +const static KeyCode Backspace = KeyCode(8); +const static KeyCode tabulator = KeyCode(9); #endif