Reverse the position of the players to match the keyboard layout
This commit is contained in:
parent
201ed5450a
commit
4f550b3ae2
1 changed files with 2 additions and 2 deletions
4
window.c
4
window.c
|
@ -49,8 +49,8 @@ typedef struct perso_t {
|
|||
} perso_t;
|
||||
|
||||
/* Définition de nos deux joueurs */
|
||||
perso_t _herosA = { -10.f, 0.f, 0.f };
|
||||
perso_t _herosB = { 6.f, 0.f, -6.f };
|
||||
perso_t _herosA = { 6.f, 0.f, -6.f };
|
||||
perso_t _herosB = { -10.f, 0.f, 0.f };
|
||||
|
||||
/* clavier virtuel */
|
||||
enum {
|
||||
|
|
Reference in a new issue