RECORDER: Fix CID 1046882. Uninitalized variables

This commit is contained in:
Eugene Sandulenko 2013-07-14 19:30:35 +03:00
parent 9efff8f350
commit 54d0eef6f2

View File

@ -52,6 +52,12 @@ enum {
};
RecorderDialog::RecorderDialog() : Dialog("RecorderDialog"), _list(0), _currentScreenshot(0) {
_firstScreenshotUpdate = false;
_screenShotsCount = 0;
_currentScreenshotText = 0;
_authorText = 0;
_notesText = 0;
_backgroundType = ThemeEngine::kDialogBackgroundSpecial;
new StaticTextWidget(this, "SaveLoadChooser.Title", _("Recorder or Playback Gameplay"));