summaryrefslogtreecommitdiff
path: root/ted.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-08-12 10:41:22 -0300
committerpommicket <pommicket@gmail.com>2023-08-12 10:41:22 -0300
commitdbf441cdc74245c5a5f567ae0165146cd74c3b92 (patch)
treef1ca3bdf3102445a000bbc6e2695333150d0c0a2 /ted.c
parenta974b6192479e5f7f6d6fcc328313c76290f486d (diff)
more internralization
Diffstat (limited to 'ted.c')
-rw-r--r--ted.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/ted.c b/ted.c
index 3dfe7ce..379217d 100644
--- a/ted.c
+++ b/ted.c
@@ -5,6 +5,11 @@
#include <SDL_syswm.h>
#endif
+struct LoadedFont {
+ char *path;
+ Font *font;
+};
+
void die(const char *fmt, ...) {
char buf[256] = {0};