diff options
author | Strangerke | 2014-02-19 21:11:55 +0100 |
---|---|---|
committer | Strangerke | 2014-02-19 21:11:55 +0100 |
commit | 6d2f3019c7bc42e7a72491e2d3c723c471cc7c96 (patch) | |
tree | 49ed75da5378abaac9a8d6aace58703baa532d59 | |
parent | 2f0b6c7e95817ec5848f2bfae6226a10f7a0ce25 (diff) | |
download | scummvm-rg350-6d2f3019c7bc42e7a72491e2d3c723c471cc7c96.tar.gz scummvm-rg350-6d2f3019c7bc42e7a72491e2d3c723c471cc7c96.tar.bz2 scummvm-rg350-6d2f3019c7bc42e7a72491e2d3c723c471cc7c96.zip |
AVALANCHE: Fix uninitialized variable in Avalanche's shoot'em up
-rw-r--r-- | engines/avalanche/shootemup.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/avalanche/shootemup.cpp b/engines/avalanche/shootemup.cpp index edd4d7a87a..2e689b870d 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() { |