1
0
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:
elsid 2023-01-12 22:51:54 +01:00
parent b88f0d2dbd
commit d4ab1101eb
No known key found for this signature in database
GPG Key ID: 4DE04C198CBA7625

View File

@ -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
{