diff options
author | Diegoisawesome <Diegoisawesome@users.noreply.github.com> | 2017-10-22 19:53:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-22 19:53:25 -0500 |
commit | 5b83924d6ceb4a78f17c84266c18634b08e6f7f4 (patch) | |
tree | 39dee9241a0ccb04047c832776ecbbca76ee9dbc /include | |
parent | c042e5148b9fa3a51a4010922c3f9cd6ba11b51e (diff) | |
parent | 1ef4dbe691af72bec7fbe2d57f094c335f6de3a3 (diff) |
Merge pull request #95 from PikalaxALT/decoration
Move these palettes to INCBINs
Diffstat (limited to 'include')
-rw-r--r-- | include/decoration.h | 4 | ||||
-rw-r--r-- | include/global.h | 6 | ||||
-rw-r--r-- | include/strings.h | 28 |
3 files changed, 20 insertions, 18 deletions
diff --git a/include/decoration.h b/include/decoration.h index c426a479a..adefb2fd1 100644 --- a/include/decoration.h +++ b/include/decoration.h @@ -187,8 +187,8 @@ struct DecorPCPointers }; extern const struct Decoration gDecorations[]; -extern EWRAM_DATA u8 *gUnknown_0203A14C; -extern EWRAM_DATA u8 gUnknown_0203A172; +extern EWRAM_DATA u8 *gCurDecorInventoryItems; +extern EWRAM_DATA u8 gCurDecorationIndex; void sub_8126968(void); diff --git a/include/global.h b/include/global.h index d8547d9c3..8860b4ae3 100644 --- a/include/global.h +++ b/include/global.h @@ -12,8 +12,10 @@ #define asm_unified(x) asm(".syntax unified\n" x "\n.syntax divided") #if defined (__APPLE__) || defined (__CYGWIN__) -void memset(void *, int, size_t); -void memcpy(void *, const void *, size_t); +void *memset(void *, int, size_t); +void *memcpy(void *, const void *, size_t); +int strcmp(const char *s1, const char *s2); +char* strcpy(char *dst0, const char *src0); #endif // __APPLE__ #define ARRAY_COUNT(array) (sizeof(array) / sizeof((array)[0])) diff --git a/include/strings.h b/include/strings.h index 33c8984d2..191b1809a 100644 --- a/include/strings.h +++ b/include/strings.h @@ -56,19 +56,19 @@ extern const u8 gText_NoDecorationHere[]; extern const u8 gText_DecorationWillBeDiscarded[]; extern const u8 gText_CantThrowAwayInUse[]; extern const u8 gText_DecorationThrownAway[]; -extern const u8 gUnknown_085EA859[]; -extern const u8 gUnknown_085EA85E[]; -extern const u8 gUnknown_085EA864[]; -extern const u8 gUnknown_085EA86A[]; -extern const u8 gUnknown_085EA873[]; -extern const u8 gUnknown_085EA877[]; -extern const u8 gUnknown_085EA7CF[]; -extern const u8 gUnknown_085EA7F5[]; -extern const u8 gUnknown_085EA81C[]; -extern const u8 gUnknown_085EA87E[]; -extern const u8 gUnknown_085EA883[]; -extern const u8 gUnknown_085EA7B1[]; -extern const u8 gUnknown_085EA7BA[]; -extern const u8 gUnknown_085EA7C3[]; +extern const u8 gText_Desk[]; +extern const u8 gText_Chair[]; +extern const u8 gText_Plant[]; +extern const u8 gText_Ornament[]; +extern const u8 gText_Mat[]; +extern const u8 gText_Poster[]; +extern const u8 gText_PutOutSelectedDecorItem[]; +extern const u8 gText_StoreChosenDecorInPC[]; +extern const u8 gText_ThrowAwayUnwantedDecors[]; +extern const u8 gText_Doll[]; +extern const u8 gText_Cushion[]; +extern const u8 gText_Decorate[]; +extern const u8 gText_PutAway[]; +extern const u8 gText_Toss2[]; #endif //GUARD_STRINGS_H |