Skip to content
Snippets Groups Projects
Commit 142610c4 authored by Tazpn's avatar Tazpn
Browse files

Change default to little endian instead of big endian.

parent a246159f
No related branches found
No related tags found
No related merge requests found
......@@ -87,12 +87,12 @@ enum ExportOptions {
//--Structures--//
struct NifInfo {
NifInfo() : version(VER_4_0_0_2), userVersion(0), userVersion2(0), endian(INFO_BIG_ENDIAN) {}
NifInfo() : version(VER_4_0_0_2), userVersion(0), userVersion2(0), endian(INFO_LITTLE_ENDIAN) {}
NifInfo( unsigned version, unsigned userVersion = 0, unsigned userVersion2 = 0) {
this->version = version;
this->userVersion = userVersion;
this->userVersion2 = userVersion2;
endian = INFO_BIG_ENDIAN;
endian = INFO_LITTLE_ENDIAN;
}
//TODO: Implement endian support
enum EndianType {
......
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