Add DISPLAY_EFFE back after it was removed by 0799c2e09d

This commit is contained in:
Simon Robertshaw 2012-05-24 20:01:07 +01:00
parent 4da9a26502
commit 2f145e8188
2 changed files with 5 additions and 4 deletions

View File

@ -65,5 +65,6 @@
#define DISPLAY_AIR 0x0000000F #define DISPLAY_AIR 0x0000000F
#define DISPLAY_WARP 0x00000010 #define DISPLAY_WARP 0x00000010
#define DISPLAY_PERS 0x00000020 #define DISPLAY_PERS 0x00000020
#define DISPLAY_EFFE 0x00000040
#endif #endif

View File

@ -6671,10 +6671,10 @@ void render_ui(pixel * vid_buf, int xcoord, int ycoord, int orientation)
int render_optionicons[] = {0xE1, 0xDF, 0x9B, 0xC4, 0xBF, 0xDB}; int render_optionicons[] = {0xE1, 0xDF, 0x9B, 0xC4, 0xBF, 0xDB};
char * render_desc[] = {"Effects", "Glow", "Fire", "Blur", "Blob", "Basic"}; char * render_desc[] = {"Effects", "Glow", "Fire", "Blur", "Blob", "Basic"};
int display_optioncount = 6; int display_optioncount = 7;
int display_options[] = {DISPLAY_AIRC, DISPLAY_AIRP, DISPLAY_AIRV, DISPLAY_AIRH, DISPLAY_WARP, DISPLAY_PERS}; int display_options[] = {DISPLAY_AIRC, DISPLAY_AIRP, DISPLAY_AIRV, DISPLAY_AIRH, DISPLAY_WARP, DISPLAY_PERS, DISPLAY_EFFE};
int display_optionicons[] = {0xD4, 0x99, 0x98, 0xBE, 0xDE, 0x9A}; int display_optionicons[] = {0xD4, 0x99, 0x98, 0xBE, 0xDE, 0x9A, 0xE1};
char * display_desc[] = {"Air: Cracker", "Air: Pressure", "Air: Velocity", "Air: Heat", "Warp effect", "Persistent"}; char * display_desc[] = {"Air: Cracker", "Air: Pressure", "Air: Velocity", "Air: Heat", "Warp effect", "Persistent", "Effects"};
int colour_optioncount = 4; int colour_optioncount = 4;
int colour_options[] = {COLOUR_BASC, COLOUR_LIFE, COLOUR_HEAT, COLOUR_GRAD}; int colour_options[] = {COLOUR_BASC, COLOUR_LIFE, COLOUR_HEAT, COLOUR_GRAD};