From 5cf2c2442bfe92ea7e35b8077c66f66aa9a7826e Mon Sep 17 00:00:00 2001 From: Robert Date: Tue, 18 Aug 2020 14:14:55 +0200 Subject: [PATCH] Simplified version print --- ComplexPlotting/main.cpp | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) 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