diff options
Diffstat (limited to 'Modis/Don't_Get_Worse')
-rw-r--r-- | Modis/Don't_Get_Worse/Hold_The_Line.dpr | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modis/Don't_Get_Worse/Hold_The_Line.dpr b/Modis/Don't_Get_Worse/Hold_The_Line.dpr index de19858b..27b9c3df 100644 --- a/Modis/Don't_Get_Worse/Hold_The_Line.dpr +++ b/Modis/Don't_Get_Worse/Hold_The_Line.dpr @@ -58,14 +58,14 @@ end; function Init (const TeamInfo: TTeamInfo; var Playerinfo: TPlayerinfo; const Sentences: TSentences; const Methods: TMethodRec): boolean; stdcall;
var
I: Integer;
- Texname, TexType: PChar;
+ Texname: PChar;
+ TexType: TTextureType;
begin
TexName := CreateStr(PChar('HDL_Pointer'));
- TexType := CreateStr(PChar('Font Black'));
+ TexType := TEXTURE_TYPE_TRANSPARENT;
PointerTex := Methods.LoadTex(TexName, TexType);
FreeStr(TexName);
- FreeStr(TexType);
TexName := CreateStr(PChar('dismissed.mp3'));
DismissedSound := Methods.LoadSound (TexName);
@@ -209,4 +209,4 @@ PluginInfo, Init, Draw, Finish; begin
-end.
\ No newline at end of file +end.
|