Skip to content

Commit

Permalink
refactor: ♻️ Make defines unsigned
Browse files Browse the repository at this point in the history
  • Loading branch information
ion098 authored Dec 9, 2024
1 parent a50f2f4 commit f907d62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/devices/controller.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
#include "v5_api.h"
#include "vdml/vdml.h"

#define CONTROLLER_MAX_COLS 15
#define CONTROLLER_MAX_CHARS 31
#define CONTROLLER_MAX_COLS ( 20U )
#define CONTROLLER_MAX_CHARS ( 31U )

// From enum in misc.h
#define NUM_BUTTONS 12
Expand Down

0 comments on commit f907d62

Please sign in to comment.