summaryrefslogtreecommitdiff
path: root/packages/sdl
diff options
context:
space:
mode:
authorAlmindor <Almindor@3ad0048d-3df7-0310-abae-a5850022a9f2>2008-07-11 09:39:34 +0000
committerAlmindor <Almindor@3ad0048d-3df7-0310-abae-a5850022a9f2>2008-07-11 09:39:34 +0000
commit028f9353d6171eb1ca4fabf9141e97a513f3e595 (patch)
tree5e3e3aad867e5b325f0e343c7fbedefa0ba008b5 /packages/sdl
parentae8a3d38c42027c1a85d07fdcf3e23fce75f7581 (diff)
downloadfpc-028f9353d6171eb1ca4fabf9141e97a513f3e595.tar.gz
* fix oversight bug in SDL.pas, SDL_WM_SetIcon() accepts a PUint8 as second argument
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@11361 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/sdl')
-rw-r--r--packages/sdl/src/sdl.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/sdl/src/sdl.pas b/packages/sdl/src/sdl.pas
index 14f4be4a92..514ea49a60 100644
--- a/packages/sdl/src/sdl.pas
+++ b/packages/sdl/src/sdl.pas
@@ -3585,7 +3585,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}