mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-22 06:57:33 -05:00
This documents the loading of BDHC files that are embedded in files of the land data NARC. Credits goes to Mikelan98, HiroTDK and HumanGamer for their resources (listed below). It would have been a lot more painful having to reverse this file format. Resources used: * https://hirotdk.neocities.org/FileSpecs#Terrain * https://www.pokecommunity.com/threads/i-solved-the-final-piece-of-the-terrain-bdhc-files-in-gen-4-inclines.424428/ Signed-off-by: Kuruyia <github@kuruyia.net>
9 lines
179 B
C
9 lines
179 B
C
#ifndef POKEPLATINUM_CONSTANTS_BDHC_H
|
|
#define POKEPLATINUM_CONSTANTS_BDHC_H
|
|
|
|
#define BDHC_BUFFER_SIZE 0x9000
|
|
|
|
#define BDHC_MAGIC_LENGTH 4
|
|
|
|
#endif // POKEPLATINUM_CONSTANTS_BDHC_H
|