Fixed mistake with #endif placement

This commit is contained in:
Zachary McAlpin 2019-12-14 19:32:49 -06:00
parent ee9e72f48b
commit fce6ea0384

View file

@ -11422,8 +11422,8 @@ void P_PlayerThink(player_t *player)
{ {
#ifdef HAVE_BLUA #ifdef HAVE_BLUA
LUAh_PlayerThink(player); LUAh_PlayerThink(player);
return;
#endif #endif
return;
} }
} }
} }