Cleanup some clutter --nobuild

This commit is contained in:
Willy-JL
2023-08-29 00:26:59 +02:00
parent 7e56034538
commit 184eb718e1
8 changed files with 4 additions and 17 deletions

View File

@@ -524,7 +524,7 @@ static void byte_input_handle_down(ByteInputModel* model) {
*
* @param model The model
*/
static void byte_input_handle_left(ByteInputModel* model) { // XXX
static void byte_input_handle_left(ByteInputModel* model) {
if(byte_input_keyboard_selected(model)) {
if(model->selected_column > 0) {
model->selected_column -= 1;
@@ -544,7 +544,7 @@ static void byte_input_handle_left(ByteInputModel* model) { // XXX
*
* @param model The model
*/
static void byte_input_handle_right(ByteInputModel* model) { // XXX
static void byte_input_handle_right(ByteInputModel* model) {
if(byte_input_keyboard_selected(model)) {
if(model->selected_column < byte_input_get_row_size(model->selected_row) - 1) {
model->selected_column += 1;