mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
Change Interpreter type aliases to be fixed size types
Remove no longer relevant comment for float type.
This commit is contained in:
parent
b88f0d2dbd
commit
d4ab1101eb
@ -5,15 +5,13 @@
|
||||
|
||||
namespace Interpreter
|
||||
{
|
||||
typedef unsigned int Type_Code; // 32 bit
|
||||
typedef std::uint32_t Type_Code;
|
||||
|
||||
typedef unsigned int Type_Data; // 32 bit
|
||||
typedef std::int16_t Type_Short;
|
||||
|
||||
typedef short Type_Short; // 16 bit
|
||||
typedef std::int32_t Type_Integer;
|
||||
|
||||
typedef int Type_Integer; // 32 bit
|
||||
|
||||
typedef float Type_Float; // 32 bit
|
||||
typedef float Type_Float;
|
||||
|
||||
union Data
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user