1
0
mirror of https://github.com/blupi-games/planetblupi synced 2024-12-30 10:15:36 +01:00

Remove obsolete avi stuff

This commit is contained in:
Mathieu Schroeter 2017-02-05 17:45:21 +01:00
parent c432dceb8b
commit e2825eac3c
2 changed files with 4 additions and 7 deletions

View File

@ -166,14 +166,13 @@ void CMovie::playMovie(int nDirection)
CMovie::CMovie()
{
m_bEnable = false;
m_wMCIDeviceID = 0;
m_fPlaying = false;
m_fMovieOpen = false;
m_movie = nullptr;
m_player = nullptr;
m_movie = nullptr;
m_player = nullptr;
m_videoTex = nullptr;
pinfo = nullptr;
pinfo = nullptr;
}
// Destructeur.

View File

@ -38,10 +38,8 @@ protected:
int m_ret;
SDL_AudioDeviceID m_audioDev;
char m_audiobuf[AUDIOBUFFER_SIZE];
char m_audiobuf[AUDIOBUFFER_SIZE];
bool m_bEnable;
MCIDEVICEID m_wMCIDeviceID; // MCI Device ID for the AVI file
HWND m_hwndMovie; // window handle of the movie
bool m_fPlaying; // Play flag: true == playing, false == paused
bool m_fMovieOpen; // Open flag: true == movie open, false = none
};