aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/Don't_Get_Worse/Hold_The_Line.dpr
diff options
context:
space:
mode:
authortobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-11-04 13:32:26 +0000
committertobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-11-04 13:32:26 +0000
commit4fcb2bd721919ee9bef62a8f70e9d36fc05fc90c (patch)
treef1dd7ea8e016f5612a58feea4a25f26d1391f3ae /plugins/Don't_Get_Worse/Hold_The_Line.dpr
parentd33f56a40d9e8325a2782f90bb253dece5127c5f (diff)
downloadusdx-4fcb2bd721919ee9bef62a8f70e9d36fc05fc90c.tar.gz
usdx-4fcb2bd721919ee9bef62a8f70e9d36fc05fc90c.tar.xz
usdx-4fcb2bd721919ee9bef62a8f70e9d36fc05fc90c.zip
- switches.inc removed from ModiSDK.pas and StrUtils.pas as the plugins do not find it
- FPC compatibility (Assembler mode set, Mode-delphi set, ...) - Plugin "Don't get worse" updated for USDX 1.1 compatibility - Other plugins need to be updated too. Perhaps include them to the main project later. Note that the party mode is disabled at the moment so plugins will not work. git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1499 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'plugins/Don't_Get_Worse/Hold_The_Line.dpr')
-rw-r--r--plugins/Don't_Get_Worse/Hold_The_Line.dpr7
1 files changed, 3 insertions, 4 deletions
diff --git a/plugins/Don't_Get_Worse/Hold_The_Line.dpr b/plugins/Don't_Get_Worse/Hold_The_Line.dpr
index a197d51b..8ac4b2e7 100644
--- a/plugins/Don't_Get_Worse/Hold_The_Line.dpr
+++ b/plugins/Don't_Get_Worse/Hold_The_Line.dpr
@@ -1,9 +1,10 @@
library Hold_The_Line;
uses
- ModiSDK in '..\SDK\ModiSDK.pas',
+ ModiSDK in '..\SDK\ModiSDK.pas',
StrUtils in '..\SDK\StrUtils.pas',
- OpenGL12,
+ moduleloader in '..\..\src\lib\JEDI-SDL\SDL\Pas\moduleloader.pas',
+ gl in '..\..\src\lib\JEDI-SDL\OpenGL\Pas\gl.pas',
Windows;
var
@@ -84,8 +85,6 @@ begin
PlayerTimes[I] := 0;
end;
- LoadOpenGL;
-
Result := True;
end;