1 Commits

Author SHA1 Message Date
16b7c37d24 Tagged 1.75 2006-07-19 09:23:18 +00:00
6 changed files with 9 additions and 26 deletions

View File

@ -73,7 +73,7 @@
#define AMXXLOG_Log g_log.Log
#define AMXXLOG_Error g_log.LogError
#define AMX_VERSION "1.75a"
#define AMX_VERSION "1.75"
extern AMX_NATIVE_INFO core_Natives[];
extern AMX_NATIVE_INFO time_Natives[];

View File

@ -141,16 +141,13 @@ static cell AMX_NATIVE_CALL angle_vector(AMX *amx, cell *params)
{
case ANGLEVECTORS_FORWARD:
v_return = v_forward;
break;
case ANGLEVECTORS_RIGHT:
v_return = v_right;
break;
case ANGLEVECTORS_UP:
v_return = v_up;
break;
}
vCell = get_amxaddr(amx, params[3]);
vCell = get_amxaddr(amx,params[3]);
vCell[0] = FloatToCell(v_return.x);
vCell[1] = FloatToCell(v_return.y);
vCell[2] = FloatToCell(v_return.z);

View File

@ -26,8 +26,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,7,5,1
PRODUCTVERSION 1,7,5,1
FILEVERSION 1,7,5,0
PRODUCTVERSION 1,7,5,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -44,12 +44,12 @@ BEGIN
BEGIN
VALUE "Comments", "AMX Mod X"
VALUE "FileDescription", "AMX Mod X"
VALUE "FileVersion", "1.75a"
VALUE "FileVersion", "1.75"
VALUE "InternalName", "amxmodx"
VALUE "LegalCopyright", "Copyright (c) 2004-2006, AMX Mod X Dev Team"
VALUE "OriginalFilename", "amxmodx_mm.dll"
VALUE "ProductName", "AMX Mod X"
VALUE "ProductVersion", "1.75a"
VALUE "ProductVersion", "1.75"
END
END
BLOCK "VarFileInfo"

Binary file not shown.

View File

@ -5977,7 +5977,7 @@ object frmMain: TfrmMain
' to install AMX Mod X to:'
WordWrap = True
end
object shpMods: TShape
object Shape1: TShape
Left = 134
Top = 140
Width = 255
@ -6127,19 +6127,6 @@ object frmMain: TfrmMain
Height = 13
Caption = '5. Click Next.'
end
object lblFTP: TLabel
Left = 101
Top = 56
Width = 18
Height = 13
Caption = 'FTP'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsUnderline]
ParentFont = False
end
object pnlHeader3: TPanel
Left = 0
Top = 0

View File

@ -102,7 +102,7 @@ type
frbListenServer: TFlatRadioButton;
frbStandaloneServer: TFlatRadioButton;
frbSelectMod: TFlatRadioButton;
shpMods: TShape;
Shape1: TShape;
lblSelectModNote: TLabel;
lblStep3: TLabel;
pnlOS: TPanel;
@ -111,7 +111,6 @@ type
optLinux64: TFlatRadioButton;
lblOSNote: TLabel;
lblStep5: TLabel;
lblFTP: TLabel;
procedure jvwStepsCancelButtonClick(Sender: TObject);
procedure cmdCancelClick(Sender: TObject);
procedure cmdNextClick(Sender: TObject);
@ -148,7 +147,7 @@ var
frmMain: TfrmMain;
gMultiAccount: Boolean;
const VERSION = '1.75a';
const VERSION = '1.75';
implementation