DEADSOFTWARE

system: remove sys_GetTicks
[d2df-sdl.git] / src / game / sdl / g_system.pas
index 11fd1e08917bc047cf7e3bc60f9f16508f1176d2..117215d8e5eff50a9f64783ed344997f2c27a040 100644 (file)
@@ -20,7 +20,6 @@ interface
   uses Utils;
 
   (* --- Utils --- *)
-  function sys_GetTicks (): Int64;
   procedure sys_Delay (ms: Integer);
 
   (* --- Graphics --- *)
@@ -46,7 +45,7 @@ implementation
   uses
     SysUtils, SDL, Math,
     e_log, e_input, e_sound,
-    g_options, g_console, g_game, g_menu, g_gui, g_basic;
+    g_options, g_console, g_game, g_basic;
 
   const
     GameTitle = 'Doom 2D: Forever (SDL 1.2, %s)';
@@ -61,11 +60,6 @@ implementation
 
   (* --------- Utils --------- *)
 
-  function sys_GetTicks (): Int64;
-  begin
-    result := SDL_GetTicks()
-  end;
-
   procedure sys_Delay (ms: Integer);
   begin
     SDL_Delay(ms)