Skip to content

Commit 0411d28

Browse files
committed
client: fix inverted intermission check in NoVGUI build
1 parent e86386a commit 0411d28

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cl_dll/hud_redraw.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ int CHud::Redraw( float flTime, int intermission )
151151
}
152152
}
153153
#else
154-
if( !m_iIntermission && intermission )
154+
if( m_iIntermission && !intermission )
155155
{
156156
//++ BulliT
157157
//Stop recording the demo.

0 commit comments

Comments
 (0)