mouse: remove assert for unimplemented platforms (thanks, tomwardio!).

Fixes Bugzilla #3946.
Ryan C. Gordon 2017-11-06 15:29:24 -05:00
parent bbb22a75c8
commit 5cc46f3d30
1 changed files with 0 additions and 1 deletions

View File

@ -646,7 +646,6 @@ SDL_GetGlobalMouseState(int *x, int *y)
*x = *y = 0;
if (!mouse->GetGlobalMouseState) {
SDL_assert(0 && "This should really be implemented for every target.");
return 0;
}