aboutsummaryrefslogtreecommitdiffstats
path: root/src/globals.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/globals.c')
-rw-r--r--src/globals.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/globals.c b/src/globals.c
index 2f4d32d..c2e2ee2 100644
--- a/src/globals.c
+++ b/src/globals.c
@@ -120,3 +120,14 @@ typedef enum Scene {
120 120
121static Scene scene = SCENE_SEQUENCER; 121static Scene scene = SCENE_SEQUENCER;
122static Scene next_scene = SCENE_SEQUENCER; 122static Scene next_scene = SCENE_SEQUENCER;
123
124typedef struct Notification {
125 // We can only fit 31 characters on the notification bar at the moment.
126 // Leaving an extra character for \0.
127 char msg[32];
128 s16 time;
129} Notification;
130
131static Notification notif = {0};
132
133#define NOTIF_TIME (80 + 32)