mirror of
https://github.com/Steffo99/iiiiil-gioco.git
synced 2024-11-21 15:34:19 +00:00
Evitato un crash premendo pag su/giù
This commit is contained in:
parent
23bc7bb4f3
commit
b49d6858c2
1 changed files with 3 additions and 0 deletions
3
main.cpp
3
main.cpp
|
@ -115,6 +115,9 @@ class Player : public Entity
|
|||
target = &map[x+1][y];
|
||||
dir = 4;
|
||||
break;
|
||||
default: //Pag su, pag giù, skippa
|
||||
target = &map[x][y]; //Un po' hackerino, ma...
|
||||
break;
|
||||
//Aggiungere gestione del caso che non sia una delle quattro frecce
|
||||
}
|
||||
//Muoviti e agisci!
|
||||
|
|
Loading…
Reference in a new issue