Skip to content

Commit

Permalink
maintenance
Browse files Browse the repository at this point in the history
  • Loading branch information
powerof3 authored and github-actions[bot] committed Dec 8, 2024
1 parent 3d71e53 commit c07ef43
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions include/RE/M/MessageBoxData.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ namespace RE
}

// members
BSString bodyText; // 10
BSTArray<BSString> buttonText; // 20
std::uint32_t type; // 38 - some sort of identifier ranging from 0-29, being 25 the one with the "highest priority"
BSString bodyText; // 10
BSTArray<BSString> buttonText; // 20
std::uint32_t type; // 38 - some sort of identifier ranging from 0-29, being 25 the one with the "highest priority"
std::int32_t cancelOptionIndex; // 3C
BSTSmartPointer<IMessageBoxCallback> callback; // 40
std::uint32_t menuDepth; // 48
BSTSmartPointer<IMessageBoxCallback> callback; // 40
std::uint32_t menuDepth; // 48
std::uint8_t optionIndexOffset; // 4C
bool useHtml; // 4D
bool verticalButtons; // 4E
bool isCancellable; // 4F
bool useHtml; // 4D
bool verticalButtons; // 4E
bool isCancellable; // 4F
};
static_assert(sizeof(MessageBoxData) == 0x50);
}

0 comments on commit c07ef43

Please sign in to comment.