From 98095292d615624b80de009720e4e678f0f168a1 Mon Sep 17 00:00:00 2001 From: toasterbabe Date: Sat, 18 Mar 2017 17:02:34 +0000 Subject: [PATCH] Rob wanted hudnames that were less than 5 padded at the front. Whilst I tested it and didn't think it was a good idea, I'm committing the code anyways lest some fool wish to try it in future. --- src/r_things.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/r_things.c b/src/r_things.c index cc43e3cfc..09a2d2a45 100644 --- a/src/r_things.c +++ b/src/r_things.c @@ -3014,6 +3014,17 @@ next_token: skin_cons_t[numskins].strvalue = skin->name; #endif +#ifdef SKINNAMEPADDING + if ((size = strlen(skin->hudname)) < 5) + { + size_t offset = 5 - size; + for (size++; size--;) + skin->hudname[size+offset] = skin->hudname[size]; + while (offset--) + skin->hudname[offset] = ' '; + } +#endif + // add face graphics ST_LoadFaceGraphics(skin->face, skin->superface, numskins);