File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -332,6 +332,13 @@ function I_SetDPIAwareness: boolean;
332
332
usemmx: boolean = true;
333
333
win_vista_or_newer: boolean = true;
334
334
335
+ // ==============================================================================
336
+ //
337
+ // I_GetTickCount
338
+ //
339
+ // ==============================================================================
340
+ function I_GetTickCount : LongWord;
341
+
335
342
implementation
336
343
337
344
uses
@@ -1132,6 +1139,16 @@ function I_SetDPIAwareness: boolean;
1132
1139
FreeLibrary(dllinst);
1133
1140
end ;
1134
1141
1142
+ // ==============================================================================
1143
+ //
1144
+ // I_GetTickCount
1145
+ //
1146
+ // ==============================================================================
1147
+ function I_GetTickCount : LongWord;
1148
+ begin
1149
+ Result := GetTickCount;
1150
+ end ;
1151
+
1135
1152
initialization
1136
1153
basetime := 0 ;
1137
1154
You can’t perform that action at this time.
0 commit comments