Skip to content

Commit

Permalink
Merge pull request #25 from sardap/v1.1.3
Browse files Browse the repository at this point in the history
updated movement in sz
  • Loading branch information
sardap authored Nov 16, 2021
2 parents 9845abd + 62e8543 commit 066758b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions source/scenes/special_zone.c
Original file line number Diff line number Diff line change
Expand Up @@ -285,9 +285,9 @@ static void update_text_fade(FIXED max)
static void update_player()
{
// Rotation
if (key_tri_shoulder())
if (key_tri_horz())
{
int change = fx2int(fxmul(int2fx(key_tri_shoulder()), _data->player.turning_speed));
int change = fx2int(fxmul(int2fx(key_tri_horz()), _data->player.turning_speed));
_data->player.angle = WRAP(
_data->player.angle - change,
0, 0xFFFF);
Expand Down
4 changes: 2 additions & 2 deletions source/scenes/title_screen.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ static const char *_controls_str =
"\n\tQuit : Start + Select"
"\n\n"
"Special Zone:"
"\n\tTurn Left : L"
"\n\tTurn Right: R"
"\n\tTurn Left : D-Pad"
"\n\tTurn Right: D-Pad"
"\n\tAccelerate: A";

static void show(void)
Expand Down

0 comments on commit 066758b

Please sign in to comment.