Compile fix.

This commit is contained in:
NeoBrainX 2011-09-09 16:30:29 +02:00
parent 6ccfd85f42
commit f041eee23b
1 changed files with 2 additions and 2 deletions

View File

@ -99,8 +99,8 @@ Renderer::~Renderer()
if (g_ActiveConfig.bDumpFrames && bLastFrameDumped && bAVIDumping) if (g_ActiveConfig.bDumpFrames && bLastFrameDumped && bAVIDumping)
AVIDump::Stop(); AVIDump::Stop();
#else #else
if (f_pFrameDump.IsOpen()) if (pFrameDump.IsOpen())
f_pFrameDump.Close(); pFrameDump.Close();
#endif #endif
delete[] frame_data; delete[] frame_data;
} }