don't bail out of Menu_Draw if the qc draw function returns 0. this allows

for combined C/QC drawing.
This commit is contained in:
Bill Currie 2002-01-23 00:48:03 +00:00
parent 6b468f4454
commit eb2c7824f8

View file

@ -389,7 +389,8 @@ Menu_Draw (void)
if (menu->draw) {
PR_ExecuteProgram (&menu_pr_state, menu->draw);
return;
if (G_INT (&menu_pr_state, OFS_RETURN))
return;
}