fix build of testmouse.c

This commit is contained in:
Ozkan Sezer 2021-11-13 21:29:50 +03:00
parent 2d1706069a
commit 62b41f61d4
1 changed files with 4 additions and 4 deletions

View File

@ -16,6 +16,8 @@
#include <emscripten/emscripten.h>
#endif
#include <stdlib.h> /* exit() */
#ifdef __IPHONEOS__
#define SCREEN_WIDTH 320
#define SCREEN_HEIGHT 480
@ -27,10 +29,8 @@
static SDL_Window *window;
static SDL_Renderer *renderer;
typedef struct Line Line;
typedef struct Line {
Line *next;
typedef struct _Line {
struct _Line *next;
int x1, y1, x2, y2;
Uint8 r, g, b;