diff -r 4c2dd25630a7 -r a61458a81480 hedgewars/PascalExports.pas --- 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;