diff options
author | red031000 <rubenru09@aol.com> | 2021-03-21 21:29:54 +0000 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2021-03-21 21:29:54 +0000 |
commit | a48d4ca5662481736ae0228f2633928c338c9e8f (patch) | |
tree | a2a12e99bdb459c1d0916a2424d7b93207bb3440 /include/error_message_reset.h | |
parent | 0ed2967bdbf4667afdbbfafac6aee19d9244d50a (diff) | |
parent | 98aafed459ae6869e00462f265effa77bb76d8a4 (diff) |
Merge branch 'master' of https://github.com/pret/pokediamond
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..d8542df5 --- /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 pltt; +}; + + +struct GraphicsModes { + u32 mode1; + u32 mode2; + u32 mode3; + u32 mode4; +}; + + +THUMB_FUNC void VBlankHandler(); +THUMB_FUNC void PrintErrorMessageAndReset(); + +#endif //POKEDIAMOND_ERROR_MESSAGE_RESET_H |