mirror of
https://github.com/LNH-team/pico-launcher.git
synced 2026-06-02 09:06:54 +02:00
12 lines
177 B
C
12 lines
177 B
C
#pragma once
|
|
|
|
struct usr_cheat_index_entry_t
|
|
{
|
|
u32 gameCode;
|
|
u32 headerCrc32;
|
|
u32 offset;
|
|
u32 padding;
|
|
};
|
|
|
|
static_assert(sizeof(usr_cheat_index_entry_t) == 16);
|