Skip to content

Commit

Permalink
Fix megatest when SDL3 is used
Browse files Browse the repository at this point in the history
  • Loading branch information
slime73 committed Oct 12, 2024
1 parent ca75ca4 commit 61f1ba2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@
#include <vorbis/vorbisfile.h>
#include <freetype/config/ftconfig.h>
#include <freetype/freetype.h>
#if __has_include(<SDL3/SDL.h>)
#include <SDL3/SDL.h>
#else
#include <SDL.h>
#endif
#include <AL/al.h>
#include <AL/alext.h>
#include <modplug.h>
Expand Down

0 comments on commit 61f1ba2

Please sign in to comment.