1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-17 10:52:46 +00:00

Fixes pointed out by @zrax and @hoikas.

This commit is contained in:
Darryl Pogue
2013-01-05 14:08:08 -08:00
parent 6681b1d596
commit a8126757f8
13 changed files with 15 additions and 14 deletions

View File

@ -607,7 +607,7 @@ void plNotifyMsg::AddVariableEvent( const char* name, float number )
//
// PURPOSE : Add a variable event record to this notify message
//
void plNotifyMsg::AddVariableEvent( const char* name, int number )
void plNotifyMsg::AddVariableEvent( const char* name, int32_t number )
{
// create the control key event record
proVariableEventData* pED = new proVariableEventData;

View File

@ -376,7 +376,7 @@ public:
void AddPickEvent( const plKey &other, const plKey& self, bool enabled, hsPoint3 hitPoint );
void AddControlKeyEvent( int32_t key, bool down );
void AddVariableEvent( const char* name, float number );
void AddVariableEvent( const char* name, int number );
void AddVariableEvent( const char* name, int32_t number );
void AddVariableEvent( const char* name );
void AddVariableEvent( const char *name, const plKey &key );
void AddFacingEvent( const plKey &other, const plKey &self, float dot, bool enabled);