aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index a8b46c0..8528f0a 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -18,11 +18,22 @@
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
+#include <SDL2/SDL.h>
+
#include <iostream>
int main([[maybe_unused]] int argc, [[maybe_unused]] char *argv[])
{
+ if (SDL_Init(0) != 0) {
+ std::cerr << "SDL failed to initialize: " << SDL_GetError() <<
+ std::endl;
+ return -1;
+ } else {
+ atexit(SDL_Quit);
+ }
+
std::cout << "Hello, world!" << std::endl;
+
return 0;
}