zdoom-macos-deps/test/sdl2.cpp
alexey.lysiuk da45e6c424 normalize indentation of tests
[skip ci]
2021-05-15 15:36:34 +03:00

19 lines
208 B
C++

#include <SDL.h>
int main()
{
if (SDL_Init(SDL_INIT_EVERYTHING) != 0)
{
return 1;
}
SDL_Event dummy;
while (SDL_PollEvent(&dummy))
{
}
SDL_Quit();
return 0;
}