diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-23 22:26:05 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-23 22:26:05 +0200 |
commit | 95171100beba7bc36ae4421652f6c4fbb34774a8 (patch) | |
tree | b00be299c17415ed1101ccb6c2a34f5cdb76655a /src/crepe/api/Texture.h | |
parent | 6e2c5e1b57210b10f8781f103e5c46308544339f (diff) |
rename SdlContext -> SDLContext
Diffstat (limited to 'src/crepe/api/Texture.h')
-rw-r--r-- | src/crepe/api/Texture.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/api/Texture.h b/src/crepe/api/Texture.h index 993f72b..7a2c755 100644 --- a/src/crepe/api/Texture.h +++ b/src/crepe/api/Texture.h @@ -6,7 +6,7 @@ #include "Asset.h" namespace crepe { -class SdlContext; +class SDLContext; } namespace crepe::api { @@ -24,7 +24,7 @@ private: private: SDL_Texture * texture = nullptr; - friend class crepe::SdlContext; + friend class crepe::SDLContext; }; } // namespace crepe::api |