diff options
author | who-knows-who <j.williams97@outlook.com> | 2021-04-17 12:48:19 +0100 |
---|---|---|
committer | who-knows-who <j.williams97@outlook.com> | 2021-04-17 12:48:19 +0100 |
commit | 996d9d78106cf4ab601815550ba77a92ab678328 (patch) | |
tree | 9a92b4f792a11466cdee719b18ed449dee2e27fc /include/error_message_reset.h | |
parent | 267cb812e827604d4829d3afe28a82b0970d3706 (diff) | |
parent | 85a8a2bd43633e11af094d66a35f3c32dc7c8bfe (diff) |
Merge branch 'master' into 0202A1E0
Diffstat (limited to 'include/error_message_reset.h')
-rw-r--r-- | include/error_message_reset.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/include/error_message_reset.h b/include/error_message_reset.h new file mode 100644 index 00000000..d12cbf33 --- /dev/null +++ b/include/error_message_reset.h @@ -0,0 +1,39 @@ +#ifndef POKEDIAMOND_ERROR_MESSAGE_RESET_H +#define POKEDIAMOND_ERROR_MESSAGE_RESET_H + +#include "global.h" +#include "heap.h" +#include "SPI_pm.h" +#include "game_init.h" +#include "msgdata.h" +#include "text.h" + + + +struct GraphicsBanks +{ + s32 bg; + s32 bgextpltt; + s32 subbg; + s32 subbgextpltt; + s32 obj; + s32 objextpltt; + s32 subobj; + s32 subobjextpltt; + s32 tex; + s32 texpltt; +}; + + +struct GraphicsModes { + u32 mode1; + u32 mode2; + u32 mode3; + u32 mode4; +}; + + +THUMB_FUNC void VBlankHandler(); +THUMB_FUNC void PrintErrorMessageAndReset(); + +#endif //POKEDIAMOND_ERROR_MESSAGE_RESET_H |