Add compiler errors/warnings flags

This commit is contained in:
Amine B. Hassouna
2019-02-05 22:56:21 +01:00
parent 1694d30768
commit fc22beed41
2 changed files with 10 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
/*
* Copyright (c) 2018 Amine Ben Hassouna <amine.benhassouna@gmail.com>
* Copyright (c) 2018, 2019 Amine Ben Hassouna <amine.benhassouna@gmail.com>
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any
@@ -43,6 +43,10 @@
int main(int argc, char* argv[])
{
// Unused argc, argv
(void) argc;
(void) argv;
// Initialize SDL
if(SDL_Init(SDL_INIT_VIDEO) < 0)
{