Skip to content

Commit

Permalink
Fix static assert
Browse files Browse the repository at this point in the history
  • Loading branch information
powerof3 committed Dec 27, 2024
1 parent 87b5619 commit beca260
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions include/RE/L/LooseFileStream.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ namespace RE
LooseFileStream* Ctor(const BSFixedString& a_prefix, const BSFixedString& a_dirName, const BSFixedString& a_fileName, std::uint32_t a_fileSize, bool a_readOnly, Location* a_location);
#endif
};
#ifdef SKYRIM_SUPPORT_AE
static_assert(sizeof(LooseFileStream) == 0x58);
#else
static_assert(sizeof(LooseFileStream) == 0x50);
#endif
}
}

0 comments on commit beca260

Please sign in to comment.