Formatting

master
rexim 2020-01-20 01:40:49 +07:00
parent 4a384d904c
commit 4ec5f285b3
1 changed files with 1 additions and 1 deletions

View File

@ -370,7 +370,7 @@ void level_picker_cursor_up(LevelPicker *level_picker)
void level_picker_cursor_down(LevelPicker *level_picker)
{
trace_assert(level_picker);
if (level_picker->items_cursor + 1 < level_picker->items.count) {
if (level_picker->items_cursor + 1 < level_picker->items.count) {
level_picker->items_cursor++;
}
}