[Scummvm-cvs-logs] scummvm master -> 55719452830808fd24a3274734212df22405fd61

urukgit urukgit at users.noreply.github.com
Fri Feb 21 15:35:26 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:
5571945283 AVALANCHE: Repair ShootEmUp::setup().


Commit: 55719452830808fd24a3274734212df22405fd61
    https://github.com/scummvm/scummvm/commit/55719452830808fd24a3274734212df22405fd61
Author: uruk (koppirnyo at gmail.com)
Date: 2014-02-21T06:34:47-08:00

Commit Message:
AVALANCHE: Repair ShootEmUp::setup().

Changed paths:
    engines/avalanche/shootemup.cpp



diff --git a/engines/avalanche/shootemup.cpp b/engines/avalanche/shootemup.cpp
index 8b02427..a2d5289 100644
--- a/engines/avalanche/shootemup.cpp
+++ b/engines/avalanche/shootemup.cpp
@@ -347,11 +347,6 @@ void ShootEmUp::setup() {
 	_score = 0;
 	_time = 120;
 
-	for (int i = 0; i < 7; i++) {
-		_stockStatus[i] = _vm->_rnd->getRandomNumber(1);
-		showStock(i);
-	}
-
 	_cp = true;
 
 	_avvyWas = 320;
@@ -375,6 +370,11 @@ void ShootEmUp::setup() {
 
 	_vm->_graphics->blackOutScreen();
 
+	for (int i = 0; i < 7; i++) {
+		_stockStatus[i] = _vm->_rnd->getRandomNumber(1);
+		showStock(i);
+	}
+
 	// Set up status line:
 	_vm->_graphics->seuDrawPicture(0, 0, 16); // Score:
 	showScore(); // Value of score (00000 here).






More information about the Scummvm-git-logs mailing list