Add default argument values for SetDrawColor

This commit is contained in:
Dmitry Marakasov 2016-01-28 00:12:02 +03:00
parent b3b6ba9721
commit a1f2112820

View File

@ -298,7 +298,7 @@ public:
/// \see http://wiki.libsdl.org/SDL_SetRenderDrawColor /// \see http://wiki.libsdl.org/SDL_SetRenderDrawColor
/// ///
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
Renderer& SetDrawColor(Uint8 r, Uint8 g, Uint8 b, Uint8 a = 255); Renderer& SetDrawColor(Uint8 r = 0, Uint8 g = 0, Uint8 b = 0, Uint8 a = 255);
//////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////
/// \brief Set current render target to default /// \brief Set current render target to default