From 3679b80216741e6c2c03080762865872daff967b Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Wed, 8 May 2024 16:49:31 +0530 Subject: Added up down left right keys to controls --- src/main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index e3d69fb..4e2b8d3 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -441,13 +441,13 @@ int main(void) { time_cur = Clock::now(); bool fast = false; - if (IsKeyPressed(KEY_J)) + if (IsKeyPressed(KEY_J) || IsKeyPressed(KEY_DOWN)) dir = Direction::DOWN; - else if (IsKeyPressed(KEY_K)) + else if (IsKeyPressed(KEY_K) || IsKeyPressed(KEY_UP)) dir = Direction::UP; - else if (IsKeyPressed(KEY_H)) + else if (IsKeyPressed(KEY_H) || IsKeyPressed(KEY_LEFT)) dir = Direction::LEFT; - else if (IsKeyPressed(KEY_L)) + else if (IsKeyPressed(KEY_L) || IsKeyPressed(KEY_RIGHT)) dir = Direction::RIGHT; else if (IsKeyDown(KEY_SPACE)) fast = true; -- cgit v1.2.3-13-gbd6f