diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-01-12 16:11:05 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2009-01-12 16:11:05 +0000 |
commit | b32e9840607ea01e6f9c9bd6b6b50c477eb36207 (patch) | |
tree | 437d33136cbb5188991cae1e984862a524b5ec54 /unicode/src/lib/JEDI-SDL/SDL | |
parent | 1e8222bad310a1b17ddcc49bbec95c1964d8ae66 (diff) | |
download | usdx-b32e9840607ea01e6f9c9bd6b6b50c477eb36207.tar.gz usdx-b32e9840607ea01e6f9c9bd6b6b50c477eb36207.tar.xz usdx-b32e9840607ea01e6f9c9bd6b6b50c477eb36207.zip |
SDL_WM_SetIcon, mask parameter must be PUInt8, not UInt8
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/experimental@1558 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'unicode/src/lib/JEDI-SDL/SDL')
-rw-r--r-- | unicode/src/lib/JEDI-SDL/SDL/Pas/sdl.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unicode/src/lib/JEDI-SDL/SDL/Pas/sdl.pas b/unicode/src/lib/JEDI-SDL/SDL/Pas/sdl.pas index 62c5c769..0d7e46af 100644 --- a/unicode/src/lib/JEDI-SDL/SDL/Pas/sdl.pas +++ b/unicode/src/lib/JEDI-SDL/SDL/Pas/sdl.pas @@ -3628,7 +3628,7 @@ cdecl; external {$IFNDEF NDS}{$IFDEF __GPC__}name 'SDL_WM_SetCaption'{$ELSE} SDL This function must be called before the first call to SDL_SetVideoMode(). It takes an icon surface, and a mask in MSB format. If 'mask' is NULL, the entire icon surface will be used as the icon. } -procedure SDL_WM_SetIcon(icon: PSDL_Surface; mask: UInt8); +procedure SDL_WM_SetIcon(icon: PSDL_Surface; mask: PUInt8); cdecl; external {$IFNDEF NDS}{$IFDEF __GPC__}name 'SDL_WM_SetIcon'{$ELSE} SDLLibName{$ENDIF __GPC__}{$ENDIF}; {$EXTERNALSYM SDL_WM_SetIcon} |