hedgewars/PascalExports.pas
changeset 6954 a61458a81480
parent 6925 1fbf9266ba52
child 6990 40e5af28d026
--- a/hedgewars/PascalExports.pas	Sun Apr 29 14:00:35 2012 +0200
+++ b/hedgewars/PascalExports.pas	Sat Apr 28 15:03:52 2012 +0200
@@ -28,7 +28,7 @@
  *           http://en.wikipedia.org/wiki/X86_calling_conventions#cdecl
  *)
 interface
-uses uTypes, uConsts, uVariables, GLunit, uKeys, uSound, uAmmos, uUtils, uCommands;
+uses uTypes, uConsts, uVariables, GLunit, uInputHandler, uSound, uAmmos, uUtils, uCommands;
 
 {$INCLUDE "config.inc"}
 procedure HW_versionInfo(netProto: PLongInt; versionStr: PPChar); cdecl; export;
@@ -118,7 +118,7 @@
 procedure HW_allKeysUp; cdecl; export;
 begin
     // set all keys to released
-    uKeys.initModule;
+    uInputHandler.initModule;
 end;
 
 procedure HW_walkLeft; cdecl; export;