mirror of
https://github.com/azahar-emu/azahar.git
synced 2025-04-28 13:47:59 +03:00
frd.h: Fixed assert message typos
This commit is contained in:
parent
e2aee1980f
commit
d6745a95e3
1 changed files with 2 additions and 2 deletions
|
@ -65,13 +65,13 @@ struct ScreenName {
|
|||
// 20 bytes according to 3dbrew
|
||||
std::array<char16_t, 10> name;
|
||||
};
|
||||
static_assert(sizeof(ScreenName) == 0x14, "ScreenName has inccorect size");
|
||||
static_assert(sizeof(ScreenName) == 0x14, "ScreenName has incorrect size");
|
||||
|
||||
struct Comment {
|
||||
// 32 bytes according to 3dbrew
|
||||
std::array<char16_t, 16> name;
|
||||
};
|
||||
static_assert(sizeof(Comment) == 0x20, "Comment has inccorect size");
|
||||
static_assert(sizeof(Comment) == 0x20, "Comment has incorrect size");
|
||||
|
||||
class Module final {
|
||||
public:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue