Quick fix

This commit is contained in:
Aidan Haas 2022-12-17 22:31:57 -05:00 committed by GitHub
parent 16e7bf3bfd
commit 2d09187508
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -387,10 +387,10 @@ int main() {
if (cursor_x == 0 && cursor_y == 2) { if (cursor_x == 0 && cursor_y == 2) {
/* Exit */ /* Exit */
run = 0; run = 0;
} else if (cursor_x == 1) { } else if (cursor_x == 1 && cursor_y == 2) {
/* Stats */ /* Stats */
stat_ui(stdscr); stat_ui(stdscr);
} else if (cursor_x == 2) { } else if (cursor_x == 2 && cursor_y == 2) {
/* Settings */ /* Settings */
settings_ui(stdscr); settings_ui(stdscr);
} else if (cursor_y == 1 || cursor_y == 0) { } else if (cursor_y == 1 || cursor_y == 0) {