Skip to content
Snippets Groups Projects
Commit ce5cf032 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Fix UINT32_MAX definition in previous commit

parent 6a3fd559
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #744 passed
...@@ -192,8 +192,8 @@ typedef ushort uint16_t; ...@@ -192,8 +192,8 @@ typedef ushort uint16_t;
#define UINT16_MAX 0xffff #define UINT16_MAX 0xffff
#endif #endif
typedef ulong uint32_t; typedef ulong uint32_t;
#ifndef UINT16_MAX #ifndef UINT32_MAX
#define UINT16_MAX 0xffffffff #define UINT32_MAX 0xffffffff
#endif #endif
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment