Skip to content

Commit 8453d2a

Browse files
committed
version 4.4.1
1 parent fdea861 commit 8453d2a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

cleo_sdk/CLEO.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
#include <wtypes.h>
88

9-
#define CLEO_VERSION 0x04040000
10-
#define CLEO_VERSIONTEXT "4.4.0"
9+
#define CLEO_VERSION 0x04040100
10+
#define CLEO_VERSIONTEXT "4.4.1"
1111

1212
//result of CLEO_GetGameVersion()
1313
#define GV_US10 0 //1.0 us

cleo_sdk/CLEO.lib

0 Bytes
Binary file not shown.

source/CCustomOpcodeSystem.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1707,9 +1707,9 @@ namespace CLEO {
17071707
CGameVersionManager& gvm = GetInstance().VersionManager;
17081708
DWORD hMarker = gvm.GetGameVersion() != GV_STEAM ? MenuManager->m_nTargetBlipIndex : *((DWORD*)0xC3312C);
17091709
CMarker *pMarker;
1710-
if (hMarker && (pMarker = &RadarBlips[LOWORD(hMarker)]) && /*pMarker->m_nPoolIndex == HIWORD(hMarker) && */pMarker->m_nBlipDisplayFlag)
1710+
if (hMarker && (pMarker = &RadarBlips[LOWORD(hMarker)]) && /*pMarker->m_nPoolIndex == HIWORD(hMarker) && */pMarker->m_nBlipDisplay)
17111711
{
1712-
CVector coords(pMarker->m_vPosition);
1712+
CVector coords(pMarker->m_vecPos);
17131713
coords.z = FindGroundZ(coords.x, coords.y);
17141714
*thread << coords;
17151715
SetScriptCondResult(thread, true);

source/CLEO4.APS

484 Bytes
Binary file not shown.

source/CLEO4.rc

0 Bytes
Binary file not shown.

source/stdafx.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ enum CLEO_Version
4242

4343
CLEO_VERSION = CLEO_VER_4,
4444
};
45-
#define VERSION_LONG 0x04040000
46-
#define VERSION_STRING "4.4.0"
45+
#define VERSION_LONG 0x04040100
46+
#define VERSION_STRING "4.4.1"
4747

4848
#define CPOOL_USE_HANDLE_ACCESS
4949

0 commit comments

Comments
 (0)