Skip to content

Commit 7048f0a

Browse files
committed
Merge pull request #87 from Xottab-DUTY/small_fixes
Small fixes
2 parents dc6def9 + e65e27b commit 7048f0a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/xrCore/Crypto/xr_dsa_signer.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#include "stdafx.h"
22
#include "xr_dsa_signer.h"
3+
#include <ctime>
34

45
xr_dsa_signer::xr_dsa_signer(u8 const p_number[crypto::xr_dsa::public_key_length],
56
u8 const q_number[crypto::xr_dsa::private_key_length],

src/xrGame/alife_monster_detail_path_manager_script.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ SCRIPT_EXPORT(CALifeMonsterDetailPathManager, (),
2121
.def("target", (void (CALifeMonsterDetailPathManager::*)(const GameGraph::_GRAPH_ID &, const u32 &, const Fvector &))(&CALifeMonsterDetailPathManager::target))
2222
.def("target", (void (CALifeMonsterDetailPathManager::*)(const GameGraph::_GRAPH_ID &))(&CALifeMonsterDetailPathManager::target))
2323
.def("target", (void (CALifeMonsterDetailPathManager::*)(const CALifeSmartTerrainTask *))(&CALifeMonsterDetailPathManager::target))
24-
.def("speed ", (void (CALifeMonsterDetailPathManager::*)(const float &))(&CALifeMonsterDetailPathManager::speed))
25-
.def("speed ", (const float &(CALifeMonsterDetailPathManager::*)() const)(&CALifeMonsterDetailPathManager::speed))
24+
.def("speed", (void (CALifeMonsterDetailPathManager::*)(const float &))(&CALifeMonsterDetailPathManager::speed))
25+
.def("speed", (const float &(CALifeMonsterDetailPathManager::*)() const)(&CALifeMonsterDetailPathManager::speed))
2626
.def("completed", &CALifeMonsterDetailPathManager::completed)
2727
.def("actual", &CALifeMonsterDetailPathManager::actual)
2828
.def("failed", &CALifeMonsterDetailPathManager::failed)

src/xrServerEntities/smart_cast_impl0.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
#pragma once
1010

11-
#include "object_type_traits.h"
11+
#include "Common/object_type_traits.h"
1212

1313
namespace SmartDynamicCast {
1414
template <typename T1, typename T2>

0 commit comments

Comments
 (0)