Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
sukvojte committed Feb 18, 2024
1 parent 6dd0293 commit 00c66bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions views/debugger_emulator.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,14 +42,14 @@ typedef struct {
uint16_t animation_visible;
} DebuggerEmulatorModel;

static void draw_log0(Canvas* canvas, u_int8_t x, uint8_t y) {
static void draw_log0(Canvas* canvas, uint8_t x, uint8_t y) {
canvas_draw_line(canvas, x, y + 1, x, y + 3);
canvas_draw_line(canvas, x + 3, y + 1, x + 3, y + 3);
canvas_draw_line(canvas, x + 1, y, x + 2, y);
canvas_draw_line(canvas, x + 1, y + 4, x + 2, y + 4);
}

static void draw_log1(Canvas* canvas, u_int8_t x, uint8_t y) {
static void draw_log1(Canvas* canvas, uint8_t x, uint8_t y) {
canvas_draw_line(canvas, x, y, x, y + 4);
}

Expand Down

0 comments on commit 00c66bb

Please sign in to comment.