From 7f174505ebb70d469ff3d4cfd97dab5800fd070b Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Mon, 19 Jan 2015 00:59:20 +0300 Subject: [PATCH] Cosmetic fix --- SDL2pp/Texture.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SDL2pp/Texture.cc b/SDL2pp/Texture.cc index 191ef6f..b895617 100644 --- a/SDL2pp/Texture.cc +++ b/SDL2pp/Texture.cc @@ -171,7 +171,7 @@ SDL_BlendMode Texture::GetBlendMode() const { return mode; } -void Texture::GetColorMod(Uint8& r, Uint8& g, Uint8 &b) const { +void Texture::GetColorMod(Uint8& r, Uint8& g, Uint8& b) const { if (SDL_GetTextureColorMod(texture_, &r, &g, &b) != 0) throw Exception("SDL_GetTextureBlendMode failed"); }