From 4bcce9c04d0d1b308c27e1095dd91e4599a8dc38 Mon Sep 17 00:00:00 2001 From: Cameron Reikes Date: Sun, 11 Dec 2022 09:35:45 -0800 Subject: [PATCH] Print release tag to logs --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index a5a8828..479f80e 100644 --- a/main.c +++ b/main.c @@ -477,7 +477,7 @@ void draw_textured_rect(double x, double y, double w, double h) static void init(void) { fopen_s(&log_file, "astris_log.txt", "a"); - Log("Another day, another game of astris!\n"); + Log("Another day, another game of astris! Git release tag %d\n", GIT_RELEASE_TAG); queue_init(&packets_to_play, sizeof(OpusPacket), packets_to_play_data, ARRLEN(packets_to_play_data)); queue_init(&packets_to_send, sizeof(OpusPacket), packets_to_send_data,