[Scummvm-cvs-logs] scummvm master -> 6d2f3019c7bc42e7a72491e2d3c723c471cc7c96

Strangerke Strangerke at scummvm.org
Wed Feb 19 21:13:30 CET 2014


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:
6d2f3019c7 AVALANCHE: Fix uninitialized variable in Avalanche's shoot'em up


Commit: 6d2f3019c7bc42e7a72491e2d3c723c471cc7c96
    https://github.com/scummvm/scummvm/commit/6d2f3019c7bc42e7a72491e2d3c723c471cc7c96
Author: Strangerke (strangerke at scummvm.org)
Date: 2014-02-19T12:11:55-08:00

Commit Message:
AVALANCHE: Fix uninitialized variable in Avalanche's shoot'em up

Changed paths:
    engines/avalanche/shootemup.cpp



diff --git a/engines/avalanche/shootemup.cpp b/engines/avalanche/shootemup.cpp
index edd4d7a..2e689b8 100644
--- a/engines/avalanche/shootemup.cpp
+++ b/engines/avalanche/shootemup.cpp
@@ -86,6 +86,7 @@ ShootEmUp::ShootEmUp(AvalancheEngine *vm) {
 	_timeThisSecond = 0;
 	_cp = false;
 	_wasFacing = 0;
+	_score = 0;
 }
 
 void ShootEmUp::run() {






More information about the Scummvm-git-logs mailing list