[Scummvm-cvs-logs] scummvm master -> a9a1e69f493556351c5862ef0f426867ddc258d4

sev- sev at scummvm.org
Fri Sep 20 21:06:01 CEST 2013


This automated email contains information about 3 new commits which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
ff885af28a FULLPIPE: Remove unused variables. CID 1063179
24af440261 FULLPIPE: Remove unused class variable. CID 1063185
a9a1e69f49 FULLPIPE: Initisalize uninitialized variable. CID 1063191


Commit: ff885af28ac9218dff5bd57b9167dfc51dbbe78d
    https://github.com/scummvm/scummvm/commit/ff885af28ac9218dff5bd57b9167dfc51dbbe78d
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2013-09-20T11:59:19-07:00

Commit Message:
FULLPIPE: Remove unused variables. CID 1063179

Changed paths:
    engines/fullpipe/utils.h



diff --git a/engines/fullpipe/utils.h b/engines/fullpipe/utils.h
index 64631f4..3223b9c 100644
--- a/engines/fullpipe/utils.h
+++ b/engines/fullpipe/utils.h
@@ -98,9 +98,6 @@ class MemoryObject : CObject {
 	int _mfield_C;
 	int _mfield_10;
 	char _mfield_14;
-	char _mfield_15;
-	char _mfield_16;
-	char _mfield_17;
 	byte *_data;
 	int _dataSize;
 	int _mflags;


Commit: 24af4402611e8c932ec7aa60aa773108c8d5ba07
    https://github.com/scummvm/scummvm/commit/24af4402611e8c932ec7aa60aa773108c8d5ba07
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2013-09-20T12:00:57-07:00

Commit Message:
FULLPIPE: Remove unused class variable. CID 1063185

Changed paths:
    engines/fullpipe/sound.h



diff --git a/engines/fullpipe/sound.h b/engines/fullpipe/sound.h
index 4014cdd..ea6987a 100644
--- a/engines/fullpipe/sound.h
+++ b/engines/fullpipe/sound.h
@@ -29,7 +29,6 @@ class Sound : public MemoryObject {
 	int _id;
 	char *_description;
 	int16 _objectId;
-	int16 _field_32;
 	int _directSoundBuffer;
 	int _directSoundBuffers[7];
 	byte *_soundData;


Commit: a9a1e69f493556351c5862ef0f426867ddc258d4
    https://github.com/scummvm/scummvm/commit/a9a1e69f493556351c5862ef0f426867ddc258d4
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2013-09-20T12:03:36-07:00

Commit Message:
FULLPIPE: Initisalize uninitialized variable. CID 1063191

Changed paths:
    engines/fullpipe/scene.cpp



diff --git a/engines/fullpipe/scene.cpp b/engines/fullpipe/scene.cpp
index 8bae697..cc93363 100644
--- a/engines/fullpipe/scene.cpp
+++ b/engines/fullpipe/scene.cpp
@@ -72,6 +72,7 @@ SceneTag::SceneTag() {
 	_field_4 = 0;
 	_scene = 0;
 	_tag = 0;
+	_sceneId = 0;
 }
 
 bool SceneTag::load(MfcArchive &file) {






More information about the Scummvm-git-logs mailing list