mirror of
https://github.com/pret/pokeheartgold.git
synced 2026-05-14 07:00:08 -05:00
14 lines
300 B
C
14 lines
300 B
C
#ifndef NNSYS_G2D_FMT_G2D_SCREEN_DATA_H_
|
|
#define NNSYS_G2D_FMT_G2D_SCREEN_DATA_H_
|
|
|
|
typedef struct NNSG2dScreenData {
|
|
u16 screenWidth;
|
|
u16 screenHeight;
|
|
u16 colorMode;
|
|
u16 screenFormat;
|
|
u32 szByte;
|
|
u32 rawData[1];
|
|
} NNSG2dScreenData;
|
|
|
|
#endif //NNSYS_G2D_FMT_G2D_SCREEN_DATA_H_
|