Skip to content

Commit

Permalink
AVALANCHE: Implement ShootEmUp::check321().
Browse files Browse the repository at this point in the history
  • Loading branch information
uruk committed Feb 20, 2014
1 parent 0b4a2ba commit 401b85e
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion engines/avalanche/shootemup.cpp
Expand Up @@ -619,7 +619,25 @@ void ShootEmUp::escapeCheck() {
}

void ShootEmUp::check321() {
warning("STUB: ShootEmUp::check321()");
if (_count321 == 0)
return;

_count321--;

switch (_count321) {
case 84:
define(320, 60, 16, 2, 1, 94, false, true);
break;
case 169:
define(320, 60, 15, 0, 1, 94, false, true);
break;
case 254:
define(320, 60, 14, -2, 1, 94, false, true);
define(0, 100, 18, 2, 0, 254, false, true);
break;
default:
break;
}
}

} // End of namespace Avalanche

0 comments on commit 401b85e

Please sign in to comment.