Fixed bugs with optimized builds

Symbol table for engine module was out of order.
This commit is contained in:
2023-09-28 18:38:06 -04:00
parent 0746cbd504
commit d76163ae84
10 changed files with 72 additions and 51 deletions

View File

@ -10,7 +10,7 @@
// Casting
#define ccast( Type, Value ) ( * const_cast< Type* >( & (Value) ) )
#define ccast( Type, Value ) ( const_cast< Type >( (Value) ) )
#define pcast( Type, Value ) ( * reinterpret_cast< Type* >( & ( Value ) ) )
#define rcast( Type, Value ) reinterpret_cast< Type >( Value )
#define scast( Type, Value ) static_cast< Type >( Value )