aboutsummaryrefslogtreecommitdiff
path: root/engines/wintermute/video/video_player.h
diff options
context:
space:
mode:
authorEinar Johan Trøan Sømåen2012-07-26 22:20:55 +0200
committerEinar Johan Trøan Sømåen2012-07-26 22:20:55 +0200
commit3a49f2bad407787ef65d04c5f9ae423485629b41 (patch)
treef7ceed0ac885724b5569302bc23ba3f027705fb1 /engines/wintermute/video/video_player.h
parent496a3938c451683845e73fa9b2cba20dadddfe21 (diff)
downloadscummvm-rg350-3a49f2bad407787ef65d04c5f9ae423485629b41.tar.gz
scummvm-rg350-3a49f2bad407787ef65d04c5f9ae423485629b41.tar.bz2
scummvm-rg350-3a49f2bad407787ef65d04c5f9ae423485629b41.zip
WINTERMUTE: More variable/function renaming VarName->varName
Diffstat (limited to 'engines/wintermute/video/video_player.h')
-rw-r--r--engines/wintermute/video/video_player.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/wintermute/video/video_player.h b/engines/wintermute/video/video_player.h
index 8e82a44076..4c02506094 100644
--- a/engines/wintermute/video/video_player.h
+++ b/engines/wintermute/video/video_player.h
@@ -42,22 +42,22 @@ class VideoPlayer : public BaseClass {
public:
bool _showSubtitle;
int _currentSubtitle;
- bool loadSubtitles(const char *filename, const char *SubtitleFile);
+ bool loadSubtitles(const char *filename, const char *subtitleFile);
bool _slowRendering;
bool isPlaying();
char *_filename;
bool stop();
- bool play(TVideoPlayback Type = VID_PLAY_CENTER, int X = 0, int Y = 0, bool FreezeMusic = true);
+ bool play(TVideoPlayback Type = VID_PLAY_CENTER, int x = 0, int y = 0, bool freezeMusic = true);
uint32 _totalVideoTime;
uint32 _startTime;
//CVidRenderer *_vidRenderer;
//BaseSoundAVI *_sound;
bool _soundAvailable;
- bool SetDefaults();
+ bool setDefaults();
bool _playing;
bool display();
bool update();
- bool initialize(const char *inFilename, const char *SubtitleFile = NULL);
+ bool initialize(const char *inFilename, const char *subtitleFile = NULL);
bool cleanup();
VideoPlayer(BaseGame *inGame);
virtual ~VideoPlayer();