mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 07:05:39 +00:00
19 lines
235 B
C++
19 lines
235 B
C++
|
#include <iostream>
|
||
|
#include <SDL/SDL.h>
|
||
|
#include "Renderer.h"
|
||
|
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
if(SDL_Init(SDL_INIT_VIDEO | SDL_INIT_JOYSTICK) != 0)
|
||
|
{
|
||
|
std::cerr << "Error - could not initialize SDL!\n";
|
||
|
return 1;
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
SDL_Quit();
|
||
|
return 0;
|
||
|
}
|