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

Strangerke Strangerke at scummvm.org
Sat Apr 27 11:44:54 CEST 2013


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

Summary:
e65597c8f3 TSAGE: Fix some non-initialized variables. CID 1002389, 1002390, 1002391


Commit: e65597c8f33c3f0876c7c50a704c0fa2c57c26f2
    https://github.com/scummvm/scummvm/commit/e65597c8f33c3f0876c7c50a704c0fa2c57c26f2
Author: Strangerke (strangerke at scummvm.org)
Date: 2013-04-27T02:43:41-07:00

Commit Message:
TSAGE: Fix some non-initialized variables. CID 1002389, 1002390, 1002391

Changed paths:
    engines/tsage/ringworld/ringworld_scenes3.cpp



diff --git a/engines/tsage/ringworld/ringworld_scenes3.cpp b/engines/tsage/ringworld/ringworld_scenes3.cpp
index 0e4ccd1..b2ed986 100644
--- a/engines/tsage/ringworld/ringworld_scenes3.cpp
+++ b/engines/tsage/ringworld/ringworld_scenes3.cpp
@@ -2179,6 +2179,7 @@ Scene2120::Scene2120(): Scene() {
 	_prevDbMode = 0;
 	_visageVisable = false;
 	_subjectIndex = 0;
+	_lineOffset = 0;
 }
 
 void Scene2120::postInit(SceneObjectList *OwnerList) {
@@ -3690,8 +3691,8 @@ void Scene2230::Hotspot12::doAction(int action) {
 
 /*--------------------------------------------------------------------------*/
 
-Scene2230::Scene2230() :
-		_hotspot9(0, CURSOR_LOOK, 2230, 16, CURSOR_USE, 2230, 18, LIST_END) {
+Scene2230::Scene2230() : _hotspot9(0, CURSOR_LOOK, 2230, 16, CURSOR_USE, 2230, 18, LIST_END) {
+	_field30A = 0;
 }
 
 void Scene2230::postInit(SceneObjectList *OwnerList) {
@@ -4877,6 +4878,7 @@ Scene2310::Scene2310() {
 	_rectList[4].set(199, 70, 215, 140);
 
 	_wireIndex = 5;
+	_pageIndex = 0;
 }
 
 void Scene2310::postInit(SceneObjectList *OwnerList) {






More information about the Scummvm-git-logs mailing list