From 897c4d75407b858d5a08069d34fc6708a4152514 Mon Sep 17 00:00:00 2001 From: thefiddler Date: Fri, 30 May 2014 13:50:11 +0200 Subject: [PATCH] [SDL] Removed unnecessary if-branch --- Source/OpenTK/Configuration.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/OpenTK/Configuration.cs b/Source/OpenTK/Configuration.cs index 3200e097..2e04c773 100644 --- a/Source/OpenTK/Configuration.cs +++ b/Source/OpenTK/Configuration.cs @@ -246,8 +246,7 @@ namespace OpenTK } else { - Debug.Print("SDL2 is {0}. Version is {1}.{2}.{3}", - supported ? "supported" : "not supported", + Debug.Print("SDL2 is supported. Version is {0}.{1}.{2}", version.Major, version.Minor, version.Patch); }