mirror of
https://github.com/yawut/SDL.git
synced 2026-04-21 16:17:28 -05:00
Fixed compiling test with older C.
This commit is contained in:
parent
7498735ea7
commit
f45215f76a
|
|
@ -37,9 +37,11 @@ Code
|
|||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
SDL_Window *win;
|
||||
|
||||
SDL_Init(SDL_INIT_VIDEO);
|
||||
|
||||
SDL_Window *win = SDL_CreateWindow("Test", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 800, 600, 0);
|
||||
win = SDL_CreateWindow("Test", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, 800, 600, 0);
|
||||
SDL_SetRelativeMouseMode(SDL_TRUE);
|
||||
|
||||
while (1)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user