Browse Source

refactoring: Argument in der Methode loadLevel angepasst

main
fdai7172 2 years ago
parent
commit
18f4d0027f
  1. 4
      src/Paper-Bin.c

4
src/Paper-Bin.c

@ -60,7 +60,7 @@ void buildBin(int width, int heigth)
field[width][heigth + 1] = ' '; field[width][heigth + 1] = ' ';
} }
void loadLevel(int lvlnum)
void loadLevel(int lvlNum)
{ {
clearField(); clearField();
ballX = -1; ballX = -1;
@ -69,7 +69,7 @@ void loadLevel(int lvlnum)
int tmpX; int tmpX;
int tmpY; int tmpY;
switch (lvlnum)
switch (lvlNum)
{ {
//Level 1: Nur der Korb wird erstellt //Level 1: Nur der Korb wird erstellt
case (1): case (1):

Loading…
Cancel
Save