aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortlatorre <tlatorre@uchicago.edu>2022-11-12 15:51:39 -0800
committertlatorre <tlatorre@uchicago.edu>2022-11-12 15:51:39 -0800
commit4f2ab073ce960e0457d4e22aeca85a8fa20b57c2 (patch)
treebe3a11ce3b57cd3a4545a68c51303c2d067b946e
parent40e812e3b429955221d2383fc705e24803dc5c5b (diff)
downloadmoji-4f2ab073ce960e0457d4e22aeca85a8fa20b57c2.tar.gz
moji-4f2ab073ce960e0457d4e22aeca85a8fa20b57c2.tar.bz2
moji-4f2ab073ce960e0457d4e22aeca85a8fa20b57c2.zip
add thought bubble
-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,