diff --git a/src/shared/w_beamgun.qc b/src/shared/w_beamgun.qc index 1844a77..93f154d 100644 --- a/src/shared/w_beamgun.qc +++ b/src/shared/w_beamgun.qc @@ -194,7 +194,7 @@ w_beamgun_hud(void) txt4 = sprintf("LIGHTNING: %s", lmodes[getstati(48)]); pos = g_hudmins + (g_hudres / 2) + [-80,-48]; - drawfont = FONT_20; + drawfont = Font_GetID(FONT_20); drawstring(pos, txt1, [20,20], col1, 1.0f, DRAWFLAG_ADDITIVE); pos[1] += 24; diff --git a/src/shared/w_chemicalgun.qc b/src/shared/w_chemicalgun.qc index 133a97c..417aff7 100644 --- a/src/shared/w_chemicalgun.qc +++ b/src/shared/w_chemicalgun.qc @@ -292,7 +292,7 @@ w_chemicalgun_hud(void) txt4 = "PRESSURE:"; pos = g_hudmins + (g_hudres / 2) + [-128,-96]; - drawfont = FONT_20; + drawfont = Font_GetID(FONT_20); drawstring(pos + [0,8], txt1, [20,20], col1, 1.0f, DRAWFLAG_ADDITIVE); w_chemgun_drawvial(pos, getstati(51), [0,1,0]); diff --git a/src/shared/w_dml.qc b/src/shared/w_dml.qc index 5198ac5..bfff2f1 100644 --- a/src/shared/w_dml.qc +++ b/src/shared/w_dml.qc @@ -310,7 +310,7 @@ w_dml_hud(void) txt4 = sprintf("PAYLOAD: %s", pmodes[getstati(45)]); pos = g_hudmins + (g_hudres / 2) + [-80,-48]; - drawfont = FONT_20; + drawfont = Font_GetID(FONT_20); drawstring(pos, txt1, [20,20], col1, 1.0f, DRAWFLAG_ADDITIVE); pos[1] += 24; diff --git a/src/shared/w_grenade.qc b/src/shared/w_grenade.qc index b678c71..fa372a8 100644 --- a/src/shared/w_grenade.qc +++ b/src/shared/w_grenade.qc @@ -180,7 +180,7 @@ w_grenade_hud(void) txt2 = sprintf("PAYLOAD: %s", pmodes[getstati(50)]); pos = g_hudmins + (g_hudres / 2) + [-48,-16]; - drawfont = FONT_20; + drawfont = Font_GetID(FONT_20); drawstring(pos, txt1, [20,20], col1, 1.0f, DRAWFLAG_ADDITIVE); drawstring(pos + [0,24], txt2, [20,20], col2, 1.0f, diff --git a/src/shared/w_shotgun.qc b/src/shared/w_shotgun.qc index 5f082f1..e7cdc57 100644 --- a/src/shared/w_shotgun.qc +++ b/src/shared/w_shotgun.qc @@ -274,7 +274,7 @@ w_shotgun_hud(void) spreadstr = sprintf("SPREAD: %s", gsmodes[getstati(41)]); pos = g_hudmins + (g_hudres / 2) + [-48,-16]; - drawfont = FONT_20; + drawfont = Font_GetID(FONT_20); drawstring(pos, shellstr, [20,20], col1, 1.0f, DRAWFLAG_ADDITIVE); drawstring(pos + [0,24], spreadstr, [20,20], col2, 1.0f,