Skip to content

Commit

Permalink
Add some constants for SGold
Browse files Browse the repository at this point in the history
  • Loading branch information
cad0gan committed Nov 16, 2024
1 parent 3c507e0 commit d0eec97
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions swilib/include/swilib/base.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,15 @@ typedef struct LLIST LLIST;
* */
enum DefaultLgpID {
#ifdef NEWSGOLD
LGP_NULL = 0x7FFFFFFF, /**< Empty LGP */
#else
LGP_NULL = 0x7FFF, /**< Empty LGP */
#endif
LGP_NULL = 0x7FFFFFFF, /**< Empty LGP */
LGP_DOIT_PIC = 0x7FFFC0FB, /**< OK icon */
LGP_CHANGE_PIC = 0x7FFFC10D, /**< Change icon */
LGP_SAVE_PIC = 0x7FFFC113, /**< Save icon */
#else
LGP_NULL = 0x7FFF, /**< Empty LGP */
LGP_DOIT_PIC = 0x4E48, /**< OK icon */
LGP_MENU_PIC = 0x4E4A, /**< Menu icon */
#endif
};

/**
Expand Down

0 comments on commit d0eec97

Please sign in to comment.