Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed code example for SDL_GetWindowWMInfo()
  • Loading branch information
slouken committed Jul 14, 2013
1 parent df6f8ab commit 7dd5442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/SDL_syswm.h
Expand Up @@ -219,7 +219,7 @@ typedef struct SDL_SysWMinfo SDL_SysWMinfo;
* \code
* SDL_SysWMinfo info;
* SDL_VERSION(&info.version);
* if ( SDL_GetWindowWMInfo(&info) ) { ... }
* if ( SDL_GetWindowWMInfo(window, &info) ) { ... }
* \endcode
*/
extern DECLSPEC SDL_bool SDLCALL SDL_GetWindowWMInfo(SDL_Window * window,
Expand Down

0 comments on commit 7dd5442

Please sign in to comment.