[renderer] Clean up a weird default case

I don't know why I used the void 0 instead of a break when clang
complained (probably rightly) about the default case hitting the end of
the switch.
This commit is contained in:
Bill Currie 2022-10-15 14:46:49 +09:00
parent 87dd4ee33d
commit 8868a5facf

View file

@ -239,7 +239,7 @@ R_StoreEfrags (const efrag_t *efrag)
EntQueue_AddEntity (r_ent_queue, ent, model->type);
break;
default:
(void)0;//FIXME for clang
break;
}
efrag = efrag->leafnext;
}