1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-11 16:00:57 +00:00

fix(legacy): correctly import SDL2 (#1485)

This commit is contained in:
Pavol Rusnak 2021-02-18 11:58:04 +01:00 committed by GitHub
parent de72cfb804
commit 90a50adc1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@
#include "buttons.h"
#include <SDL.h>
#include <SDL2/SDL.h>
uint16_t buttonRead(void) {
uint16_t state = 0;

View File

@ -19,7 +19,7 @@
#include "oled.h"
#include <SDL.h>
#include <SDL2/SDL.h>
static SDL_Renderer *renderer = NULL;
static SDL_Texture *texture = NULL;