aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorEugene Sandulenko2013-07-14 19:30:35 +0300
committerEugene Sandulenko2013-07-14 19:30:35 +0300
commit54d0eef6f23046376674c95bc7467216dc0d2766 (patch)
tree92d8ea543c3c50b1ca76c8628fbfa56a6a0a666d /gui
parent9efff8f35012a6dc42d330b8155b1ed8918f8529 (diff)
downloadscummvm-rg350-54d0eef6f23046376674c95bc7467216dc0d2766.tar.gz
scummvm-rg350-54d0eef6f23046376674c95bc7467216dc0d2766.tar.bz2
scummvm-rg350-54d0eef6f23046376674c95bc7467216dc0d2766.zip
RECORDER: Fix CID 1046882. Uninitalized variables
Diffstat (limited to 'gui')
-rw-r--r--gui/recorderdialog.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/gui/recorderdialog.cpp b/gui/recorderdialog.cpp
index 55f342d4a1..e2e73a4845 100644
--- a/gui/recorderdialog.cpp
+++ b/gui/recorderdialog.cpp
@@ -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"));