Skip to content

Commit cc4db56

Browse files
committed
API: update for 87.8193.35-35
1 parent 74e2bd7 commit cc4db56

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

NWNXLib/API/API/CExoTimers.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ NWN_API_PROLOGUE(CExoTimers)
1010
struct CExoTimersInternal;
1111

1212

13+
typedef int BOOL;
1314

1415

1516
struct CExoTimers
@@ -18,8 +19,8 @@ struct CExoTimers
1819

1920
CExoTimers();
2021
~CExoTimers();
21-
uint32_t GetLowResolutionTimer();
22-
uint64_t GetHighResolutionTimer();
22+
uint32_t GetLowResolutionTimer(BOOL bForceSyncTimer = false);
23+
uint64_t GetHighResolutionTimer(BOOL bForceSyncTimer = false);
2324

2425

2526
#ifdef NWN_CLASS_EXTENSION_CExoTimers

NWNXLib/API/API/CVirtualMachineStack.hpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@ struct CVirtualMachineStack
3535
BOOL SaveStack(CResGFF * pRes, CResStruct * pStruct);
3636
BOOL LoadStack(CResGFF * pRes, CResStruct * pStruct);
3737
void ClearStack();
38-
int32_t GetBasePointer();
39-
void SetBasePointer(int32_t nSize);
40-
int32_t GetStackPointer();
38+
inline int32_t GetStackPointer() { return m_nStackPointer; }
4139
void SetStackPointer(int32_t nSize);
4240

4341

0 commit comments

Comments
 (0)