summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/hu_lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/hu_lib.c')
-rw-r--r--apps/plugins/doom/hu_lib.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/apps/plugins/doom/hu_lib.c b/apps/plugins/doom/hu_lib.c
index 2ac3d35dde..3c510b028c 100644
--- a/apps/plugins/doom/hu_lib.c
+++ b/apps/plugins/doom/hu_lib.c
@@ -219,6 +219,10 @@ void HUlib_drawTextLine
219// 219//
220void HUlib_eraseTextLine(hu_textline_t* l) 220void HUlib_eraseTextLine(hu_textline_t* l)
221{ 221{
222// KK - If someone finds a use for this code, please fix it, I havn't seen the need
223// And it's not written to take into account scaling. Causing some nasty effects
224// on smaller screens.
225#if 0
222 int lh; 226 int lh;
223 int y; 227 int y;
224 int yoffset; 228 int yoffset;
@@ -243,8 +247,8 @@ void HUlib_eraseTextLine(hu_textline_t* l)
243 } 247 }
244 } 248 }
245 } 249 }
246
247 if (l->needsupdate) l->needsupdate--; 250 if (l->needsupdate) l->needsupdate--;
251#endif
248} 252}
249 253
250//////////////////////////////////////////////////////// 254////////////////////////////////////////////////////////