Skip to content

Commit 6601d8e

Browse files
CHG: lowercase keywords
CHG: _fun -> _func CHG: uppercase {$ instructions
1 parent de60809 commit 6601d8e

35 files changed

+1713
-1717
lines changed

units/runtime/sdl.inc

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,27 +41,27 @@ const
4141
* Unless the SDL_INIT_NOPARACHUTE flag is set, it will install cleanup
4242
* signal handlers for some commonly ignored fatal signals (like SIGSEGV).
4343
*}
44-
Type
44+
type
4545
TSDL_Init_func = function(flags: TSDL_Init): cint; cdecl;
46-
Var
46+
var
4747
SDL_Init : TSDL_Init_func = Nil;
4848

4949

5050
{**
5151
* This function initializes specific SDL subsystems
5252
*}
53-
Type
53+
type
5454
TSDL_InitSubSystem_func = function(flags: TSDL_Init): cint; cdecl;
55-
Var
55+
var
5656
SDL_InitSubSystem : TSDL_InitSubSystem_func = Nil;
5757

5858

5959
{**
6060
* This function cleans up specific SDL subsystems
6161
*}
62-
Type
62+
type
6363
TSDL_QuitSubSystem_proc = procedure(flags: TSDL_Init); cdecl;
64-
Var
64+
var
6565
SDL_QuitSubSystem : TSDL_QuitSubSystem_proc = Nil;
6666

6767

@@ -71,19 +71,19 @@ Var
7171
*
7272
* If flags is 0, it returns a mask of all initialized subsystems.
7373
*}
74-
Type
74+
type
7575
TSDL_WasInit_func = function(flags: TSDL_Init): cuint32; cdecl;
76-
Var
76+
var
7777
SDL_WasInit : TSDL_WasInit_func = Nil;
7878

7979

8080
{**
8181
* This function cleans up all initialized subsystems. You should
8282
* call it upon all exit conditions.
8383
*}
84-
Type
84+
type
8585
TSDL_Quit_proc = procedure(); cdecl;
86-
Var
86+
var
8787
SDL_Quit : TSDL_Quit_proc = Nil;
8888

8989

0 commit comments

Comments
 (0)