Skip to content

Commit

Permalink
Fixed a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ichordev committed Jul 5, 2023
1 parent 8c94842 commit 12e5224
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/bindbc/sdl/config.d
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ enum SDLSupport: SDL_version{
v2_0_22 = SDL_version(2,0,22),
v2_24 = SDL_version(2,24,0),
v2_26 = SDL_version(2,26,0),
v2_26 = SDL_version(2,28,0),
v2_28 = SDL_version(2,28,0),

deprecated("Please use `v2_0_0` instead") sdl200 = SDL_version(2,0,0),
deprecated("Please use `v2_0_1` instead") sdl201 = SDL_version(2,0,1),
Expand Down Expand Up @@ -60,7 +60,7 @@ enum staticBinding = (){

enum sdlSupport = (){
version(SDL_2_28) return SDLSupport.v2_28;
version(SDL_2_26) return SDLSupport.v2_26;
else version(SDL_2_26) return SDLSupport.v2_26;
else version(SDL_2_24) return SDLSupport.v2_24;
else version(SDL_2022) return SDLSupport.v2_0_22;
else version(SDL_2020) return SDLSupport.v2_0_20;
Expand Down

0 comments on commit 12e5224

Please sign in to comment.