diff options
author | Strangerke | 2014-03-12 06:54:26 +0100 |
---|---|---|
committer | Strangerke | 2014-03-12 07:46:43 +0100 |
commit | 2bdad6250d250215390887f9140476d3f7188884 (patch) | |
tree | 39d328186755e475d6f6dde84f9425b42e0e01fd /engines/voyeur | |
parent | c14e6a0272cde83ddc0b72c23c9ab26cd22f5587 (diff) | |
download | scummvm-rg350-2bdad6250d250215390887f9140476d3f7188884.tar.gz scummvm-rg350-2bdad6250d250215390887f9140476d3f7188884.tar.bz2 scummvm-rg350-2bdad6250d250215390887f9140476d3f7188884.zip |
VOYEUR: Fix default value of _computerTextId
Diffstat (limited to 'engines/voyeur')
-rw-r--r-- | engines/voyeur/data.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/voyeur/data.cpp b/engines/voyeur/data.cpp index 3ab5716991..ec5170cd32 100644 --- a/engines/voyeur/data.cpp +++ b/engines/voyeur/data.cpp @@ -49,7 +49,7 @@ SVoy::SVoy(VoyeurEngine *vm):_vm(vm) { _audioVisualStartTime = 0; _audioVisualDuration = 0; _boltGroupId2 = 0; - _computerTextId = 0; + _computerTextId = -1; _computerTimeMin = _computerTimeMax = 0; _eventCount = 0; _fadingStep1 = 0; |