Skip to content

Commit

Permalink
API Update 37-7
Browse files Browse the repository at this point in the history
  • Loading branch information
Daztek committed Aug 27, 2024
1 parent 88385db commit 11aea33
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ find_package(Sanitizers)
execute_process(COMMAND git rev-parse --short HEAD OUTPUT_STRIP_TRAILING_WHITESPACE OUTPUT_VARIABLE SHORT_HASH)
set(TARGET_NWN_BUILD 8193)
set(TARGET_NWN_BUILD_REVISION 37)
set(TARGET_NWN_BUILD_POSTFIX 6)
set(TARGET_NWN_BUILD_POSTFIX 7)
set(NWNX_BUILD_SHA ${SHORT_HASH})
set(PLUGIN_PREFIX NWNX_)

Expand Down
2 changes: 1 addition & 1 deletion NWNXLib/API/API/CEffectIconObject.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ typedef int BOOL;

struct CEffectIconObject
{
uint8_t m_nIcon;
uint16_t m_nIcon;
BOOL m_bFlashing;
BOOL m_nPlayerBar;

Expand Down
1 change: 1 addition & 0 deletions NWNXLib/API/API/CExoTimers.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ struct CExoTimers
~CExoTimers();
uint32_t GetMillisecondTimer(BOOL bForceSyncTimer = false);
uint64_t GetMicrosecondTimer(BOOL bForceSyncTimer = false);
time_t GetUnixTimestamp();


#ifdef NWN_CLASS_EXTENSION_CExoTimers
Expand Down
3 changes: 3 additions & 0 deletions NWNXLib/API/API/CExoTimersInternal.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,18 @@ struct CExoTimersInternal
double m_fQPCMicroSecFrequency;
volatile uint64_t m_nUsecResTimerValue;
volatile uint32_t m_nMsecResimerValue;
volatile time_t m_nUnixTimestampValue;
volatile BOOL m_bShutdown;
void * m_pTimerThread;

CExoTimersInternal();
~CExoTimersInternal();
uint32_t GetMillisecondTimerReal();
uint64_t GetMicrosecondTimerReal();
time_t GetUnixTimestampReal();
uint32_t GetMillisecondTimer();
uint64_t GetMicrosecondTimer();
time_t GetUnixTimestamp();


#ifdef NWN_CLASS_EXTENSION_CExoTimersInternal
Expand Down
1 change: 1 addition & 0 deletions NWNXLib/API/API/CNWSCreature.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,7 @@ struct CNWSCreature : CNWSObject
uint8_t m_nPrePolymorphCON;
uint8_t m_nPrePolymorphDEX;
uint16_t m_nPrePolymorphRacialType;
uint16_t m_nPrePolymorphSoundSet;
int32_t m_nPolymorphSpellId1;
int32_t m_nPolymorphSpellId2;
int32_t m_nPolymorphSpellId3;
Expand Down

0 comments on commit 11aea33

Please sign in to comment.