Skip to content

Commit

Permalink
non SMP_SUPPORT build fix refs #44
Browse files Browse the repository at this point in the history
  • Loading branch information
IR4T4 committed Aug 15, 2012
1 parent 8d65c9f commit 475a93c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/renderer/tr_backend.c
Expand Up @@ -1571,8 +1571,11 @@ void RB_ExecuteRenderCommands(const void *data)
int t1, t2;

t1 = ri.Milliseconds();

#ifdef SMP
if (!r_smp->integer || data == backEndData[0]->commands.cmds)
#else
if (data == backEndData[0]->commands.cmds)
#endif
{
backEnd.smpFrame = 0;
}
Expand Down

0 comments on commit 475a93c

Please sign in to comment.