Changed name of x1 and x2 to x and y.

This commit is contained in:
Adam Harrison 2021-11-14 15:46:33 -05:00
parent acc6667f57
commit 6750ddca2a
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ static const char* button_name(int button) {
case SDL_BUTTON_LEFT : return "left";
case SDL_BUTTON_MIDDLE : return "middle";
case SDL_BUTTON_RIGHT : return "right";
case SDL_BUTTON_X1 : return "x1";
case SDL_BUTTON_X2 : return "x2";
case SDL_BUTTON_X1 : return "x";
case SDL_BUTTON_X2 : return "y";
default : return "?";
}
}