Mercurial > sdl-ios-xcode
diff src/video/SDL_video.c @ 4750:22aa6a631d34
Changed StartTextInput to take an SDL_Window parameter.
author | dewyatt |
---|---|
date | Thu, 08 Jul 2010 01:35:47 -0400 |
parents | 791b3256fb22 |
children | f3908cd80b10 |
line wrap: on
line diff
--- a/src/video/SDL_video.c Tue Jul 06 08:22:36 2010 -0700 +++ b/src/video/SDL_video.c Thu Jul 08 01:35:47 2010 -0400 @@ -3385,10 +3385,10 @@ } void -SDL_StartTextInput(void) +SDL_StartTextInput(SDL_Window *window) { if (_this && _this->StartTextInput) { - _this->StartTextInput(_this); + _this->StartTextInput(_this, window); } SDL_EventState(SDL_TEXTINPUT, SDL_ENABLE); SDL_EventState(SDL_TEXTEDITING, SDL_ENABLE);