From 90a50adc1e5024d4f95bcac978e7363a5528cfd1 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Thu, 18 Feb 2021 11:58:04 +0100 Subject: [PATCH] fix(legacy): correctly import SDL2 (#1485) --- legacy/emulator/buttons.c | 2 +- legacy/emulator/oled.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/emulator/buttons.c b/legacy/emulator/buttons.c index c30bd2cf6..82f934713 100644 --- a/legacy/emulator/buttons.c +++ b/legacy/emulator/buttons.c @@ -19,7 +19,7 @@ #include "buttons.h" -#include +#include uint16_t buttonRead(void) { uint16_t state = 0; diff --git a/legacy/emulator/oled.c b/legacy/emulator/oled.c index 5f6b26478..c4d3335f1 100644 --- a/legacy/emulator/oled.c +++ b/legacy/emulator/oled.c @@ -19,7 +19,7 @@ #include "oled.h" -#include +#include static SDL_Renderer *renderer = NULL; static SDL_Texture *texture = NULL;