diff options
| author | Travis Howell | 2006-11-11 09:37:36 +0000 | 
|---|---|---|
| committer | Travis Howell | 2006-11-11 09:37:36 +0000 | 
| commit | 050c9e5bfba6d7fc5e32b28b9e4fa9d7628d145a (patch) | |
| tree | 9cad1d480b17869101b0935dfb6d861c8574f073 | |
| parent | 90aa1d18520615750f459383ce850103f5769a0f (diff) | |
| download | scummvm-rg350-050c9e5bfba6d7fc5e32b28b9e4fa9d7628d145a.tar.gz scummvm-rg350-050c9e5bfba6d7fc5e32b28b9e4fa9d7628d145a.tar.bz2 scummvm-rg350-050c9e5bfba6d7fc5e32b28b9e4fa9d7628d145a.zip | |
Fix valgrind warning on unitialized variable.
svn-id: r24676
| -rw-r--r-- | engines/scumm/scumm.cpp | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp index ba6e7ab50a..a687e063de 100644 --- a/engines/scumm/scumm.cpp +++ b/engines/scumm/scumm.cpp @@ -771,6 +771,7 @@ ScummEngine_vCUPhe::ScummEngine_vCUPhe(OSystem *syst, const DetectorResult &dr)  	_syst = syst;  	_game = dr.game;  	_filenamePattern = dr.fp, +	_quit = false;  	_cupPlayer = new CUP_Player(syst, this, _mixer);  } | 
