Fix preprocessor guard for draw_outline

This commit is contained in:
Kp 2013-07-14 22:41:04 +00:00
parent ab72e26469
commit fbcbccea83

View file

@ -130,8 +130,10 @@ int toggle_show_only_curside(void)
{
return Show_only_curside = !Show_only_curside;
}
#endif
void draw_outline(int nverts,const g3s_point **pointlist)
#ifndef NDEBUG
static void draw_outline(int nverts,const g3s_point **pointlist)
{
int i;