mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-22 00:41:11 +00:00
Fix a silly error that messed up the intended order of operation.
This commit is contained in:
parent
75a7c97c3a
commit
54a1ec3959
1 changed files with 5 additions and 4 deletions
|
@ -380,10 +380,11 @@ draw_load_conchars (void)
|
||||||
static void
|
static void
|
||||||
draw_gamedir (int phase)
|
draw_gamedir (int phase)
|
||||||
{
|
{
|
||||||
if (!phase)
|
if (!phase) {
|
||||||
return;
|
draw_clear_cache ();
|
||||||
draw_load_conchars ();
|
} else {
|
||||||
draw_clear_cache ();
|
draw_load_conchars ();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
VISIBLE void
|
VISIBLE void
|
||||||
|
|
Loading…
Reference in a new issue