Cosmetic fix

This commit is contained in:
Dmitry Marakasov 2015-01-19 00:59:20 +03:00
parent 8575ea5879
commit 7f174505eb

View File

@ -171,7 +171,7 @@ SDL_BlendMode Texture::GetBlendMode() const {
return mode; 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) if (SDL_GetTextureColorMod(texture_, &r, &g, &b) != 0)
throw Exception("SDL_GetTextureBlendMode failed"); throw Exception("SDL_GetTextureBlendMode failed");
} }