From c2c46aca58b67d6e764bdb5fdce1f5e5f5437917 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Fri, 25 Aug 2023 14:56:50 -0400 Subject: [PATCH] Add note about MOTDICON --- src/st_stuff.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/st_stuff.c b/src/st_stuff.c index 20f090585..970b6d377 100644 --- a/src/st_stuff.c +++ b/src/st_stuff.c @@ -1379,6 +1379,9 @@ static void ST_DrawServerSplash(void) gridX += (gridPatch->width * FRACUNIT); } + // We're a bit crunched atm to do this but hopefully in the future + // the icon can be made a bmp file on the hard drive that the server + // sends on client join instead. patch_t *iconPatch = W_CachePatchName("MOTDICON", PU_CACHE); fixed_t iconX = (BASEVIDWIDTH - 16 - iconPatch->width) * FRACUNIT; fixed_t iconY = (BASEVIDHEIGHT - 8 - iconPatch->height) * FRACUNIT;