mirror of
https://github.com/OpenMW/openmw.git
synced 2025-07-09 23:41:35 +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
1 changed files with 4 additions and 6 deletions
|
@ -5,15 +5,13 @@
|
||||||
|
|
||||||
namespace Interpreter
|
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;
|
||||||
|
|
||||||
typedef float Type_Float; // 32 bit
|
|
||||||
|
|
||||||
union Data
|
union Data
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue