zdoom-macos-deps/test/sdl2_image.cpp

10 lines
105 B
C++
Raw Normal View History

2022-09-03 07:32:11 +00:00
#include <SDL_image.h>
int main()
{
AEDI_EXPECT(IMG_Init(0) == 0);
IMG_Quit();
return 0;
}