From 4f2ab073ce960e0457d4e22aeca85a8fa20b57c2 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Sat, 12 Nov 2022 15:51:39 -0800 Subject: add thought bubble --- moji.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/moji.c b/moji.c index 76b9a48..0aaaaff 100644 --- a/moji.c +++ b/moji.c @@ -16,7 +16,6 @@ #include #include #include -#include /* 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, -- cgit