From 2c185bf63b9be84dd19c4fccf39f028b52ebe7a7 Mon Sep 17 00:00:00 2001 From: Susko3 Date: Sat, 13 Dec 2025 03:09:51 +0100 Subject: [PATCH] Fix SDL_mixer function prefix --- SDL3-CS.SourceGeneration/UnfriendlyMethodFinder.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SDL3-CS.SourceGeneration/UnfriendlyMethodFinder.cs b/SDL3-CS.SourceGeneration/UnfriendlyMethodFinder.cs index c9f87ab..960cc4b 100644 --- a/SDL3-CS.SourceGeneration/UnfriendlyMethodFinder.cs +++ b/SDL3-CS.SourceGeneration/UnfriendlyMethodFinder.cs @@ -15,7 +15,7 @@ namespace SDL.SourceGeneration { public readonly Dictionary> Methods = new Dictionary>(); - private static readonly string[] sdlPrefixes = ["SDL_", "TTF_", "IMG_", "Mix_"]; + private static readonly string[] sdlPrefixes = ["SDL_", "TTF_", "IMG_", "MIX_"]; /// /// Checks whether the method is from any SDL library.