mirror of https://github.com/encounter/SDL.git
fix build of testmouse.c
This commit is contained in:
parent
2d1706069a
commit
62b41f61d4
|
@ -16,6 +16,8 @@
|
||||||
#include <emscripten/emscripten.h>
|
#include <emscripten/emscripten.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include <stdlib.h> /* exit() */
|
||||||
|
|
||||||
#ifdef __IPHONEOS__
|
#ifdef __IPHONEOS__
|
||||||
#define SCREEN_WIDTH 320
|
#define SCREEN_WIDTH 320
|
||||||
#define SCREEN_HEIGHT 480
|
#define SCREEN_HEIGHT 480
|
||||||
|
@ -27,10 +29,8 @@
|
||||||
static SDL_Window *window;
|
static SDL_Window *window;
|
||||||
static SDL_Renderer *renderer;
|
static SDL_Renderer *renderer;
|
||||||
|
|
||||||
typedef struct Line Line;
|
typedef struct _Line {
|
||||||
|
struct _Line *next;
|
||||||
typedef struct Line {
|
|
||||||
Line *next;
|
|
||||||
|
|
||||||
int x1, y1, x2, y2;
|
int x1, y1, x2, y2;
|
||||||
Uint8 r, g, b;
|
Uint8 r, g, b;
|
||||||
|
|
Loading…
Reference in New Issue