aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--moji.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/moji.c b/moji.c
index 76b9a48..0aaaaff 100644
--- a/moji.c
+++ b/moji.c
@@ -16,7 +16,6 @@
#include <sys/time.h>
#include <stdlib.h>
#include <gdk/gdkkeysyms.h>
-#include <gdk/gdkenums.h>
/* Time in milliseconds it takes to write a character, i.e. if you hold down
* the mouse button for this many ms it will write the character and move on to
@@ -43,6 +42,7 @@ GtkWidget *text_widget;
GtkTextTag *tag;
/* List of emojis. */
+#define THOUGHT_BALLOON "\xf0\x9f\x92\xad"
#define STOP "\xf0\x9f\x9b\x91"
#define THANK_YOU "\xf0\x9f\x99\x8f"
#define UNAMUSED "\xf0\x9f\x98\x92"
@@ -92,6 +92,7 @@ const char *emoji_array[] = {
DROPLET,
CHAIR,
BED,
+ THOUGHT_BALLOON,
//FOOD,
LEFT_ARROW,
CLEAR_SCREEN,