diff --git a/ComplexPlotting/main.cpp b/ComplexPlotting/main.cpp index 909ff1c..42f17a6 100644 --- a/ComplexPlotting/main.cpp +++ b/ComplexPlotting/main.cpp @@ -3,19 +3,9 @@ #undef main -void PrintSDLVersion() -{ - SDL_version* v = new SDL_version; - SDL_VERSION(v); - printf("Running on SDL %i.%i.%i\n", v->major, v->minor, v->patch); - - delete v; - v = nullptr; -} - int main(int argc, char** argv) { - PrintSDLVersion(); + printf("Running on SDL %i.%i.%i\n", SDL_MAJOR_VERSION, SDL_MINOR_VERSION, SDL_PATCHLEVEL); return 0; } \ No newline at end of file