File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ NWN_API_PROLOGUE(CExoTimers)
1010struct CExoTimersInternal ;
1111
1212
13+ typedef int BOOL;
1314
1415
1516struct 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments