Skip to content
Snippets Groups Projects
Commit 4729f190 authored by jsiegle's avatar jsiegle
Browse files

Remove _t on types in File Reader

parent 0928e235
No related branches found
No related tags found
No related merge requests found
...@@ -35,8 +35,8 @@ FileReader::FileReader() ...@@ -35,8 +35,8 @@ FileReader::FileReader()
enabledState(false); enabledState(false);
// check endianness of the platform // check endianness of the platform
uint32_t magic = 0x00000001; uint32 magic = 0x00000001;
uint8_t black_magic = *(uint8_t *)&magic; uint8 black_magic = *(uint8 *)&magic;
if (black_magic > 0) if (black_magic > 0)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment