Commit a6a8062f authored by Sam Lantinga's avatar Sam Lantinga

Fixed missing return value

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403390
parent 3fc02a17
...@@ -2023,6 +2023,7 @@ SDL_GetRenderDrawColor(Uint8 * r, Uint8 * g, Uint8 * b, Uint8 * a) ...@@ -2023,6 +2023,7 @@ SDL_GetRenderDrawColor(Uint8 * r, Uint8 * g, Uint8 * b, Uint8 * a)
if (a) { if (a) {
*a = renderer->a; *a = renderer->a;
} }
return 0;
} }
int int
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment