mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 00:56:55 +02:00
13 lines
240 B
C
13 lines
240 B
C
#pragma once
|
|
|
|
/// @brief Struct representing an index entry of usrcheat.dat.
|
|
struct usr_cheat_index_entry_t
|
|
{
|
|
u32 gameCode;
|
|
u32 headerCrc32;
|
|
u32 offset;
|
|
u32 padding;
|
|
};
|
|
|
|
static_assert(sizeof(usr_cheat_index_entry_t) == 16);
|