|
@@ -644,9 +644,9 @@ void Defeat(int score){
|
|
|
}
|
|
|
|
|
|
|
|
|
-void get_SpecialMode(int c,int& chflag,boss& boss1,e_list& enemies,b_list& bullets,b_list& bombs,b_list& powerups,r_list& rockets){
|
|
|
+void get_SpecialMode(int c,int& chflag,boss& boss1,e_list& enemies,b_list& bullets,b_list& bombs,r_list& rockets){
|
|
|
if(get_KonamiCode(c)){
|
|
|
- activate_combo(boss1,enemies,bullets,bombs,powerups,rockets);
|
|
|
+ activate_combo(boss1,enemies,bullets,bombs,rockets);
|
|
|
if(chflag==0)
|
|
|
chflag=2;
|
|
|
if(chflag==1)
|
|
@@ -738,7 +738,7 @@ void get_cheat(char command,player& player1,e_list& enemies,double& shootrate){
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-void activate_combo(boss& boss1,e_list& enemies,b_list& bullets,b_list& bombs,b_list& powerups,r_list& rockets){ //if the player performs the Konami Code, the normal boss is replaced with BIG_ALIENBOSS
|
|
|
+void activate_combo(boss& boss1,e_list& enemies,b_list& bullets,b_list& bombs,r_list& rockets){ //if the player performs the Konami Code, the normal boss is replaced with BIG_ALIENBOSS
|
|
|
boss bossextra(1,1,500,17,5,BOSS_FILE5);
|
|
|
boss1 = bossextra;
|
|
|
std::string bossname=getenv("HOME");
|