diff options
| author | Jacob1 <jfu614@gmail.com> | 2011-11-17 01:02:30 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2011-11-18 14:15:49 (GMT) |
| commit | 8f493b62c31490301db4e388eda9707ea7777d9a (patch) | |
| tree | 564d71203f420117481032e40c170e55d23565c9 /src/interface.c | |
| parent | 2d1a0d474f44cd64a5948de8410c1a0c75908abc (diff) | |
| download | powder-8f493b62c31490301db4e388eda9707ea7777d9a.zip powder-8f493b62c31490301db4e388eda9707ea7777d9a.tar.gz | |
Add blob display back. Also fix small nothing mode bug.
Diffstat (limited to 'src/interface.c')
| -rw-r--r-- | src/interface.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interface.c b/src/interface.c index 79d1995..847b968 100644 --- a/src/interface.c +++ b/src/interface.c @@ -6168,10 +6168,10 @@ void render_ui(pixel * vid_buf, int xcoord, int ycoord, int orientation) ui_checkbox *render_cb; ui_checkbox *display_cb; ui_checkbox *colour_cb; - int render_optioncount = 5; - int render_options[] = {RENDER_EFFE, RENDER_GLOW, RENDER_FIRE, RENDER_BLUR, RENDER_BASC}; - int render_optionicons[] = {0xCC, 0xC3, 0x9B, 0xC4, 0xD1}; - char * render_desc[] = {"Effects", "Glow", "Fire", "Blur", "Basic"}; + int render_optioncount = 7; + int render_options[] = {RENDER_EFFE, RENDER_GLOW, RENDER_FIRE, RENDER_BLUR, RENDER_BASC, RENDER_BLOB, RENDER_NONE}; + int render_optionicons[] = {0xCC, 0xC3, 0x9B, 0xC4, 0xD1, 0xD1, 0xD1}; + char * render_desc[] = {"Effects", "Glow", "Fire", "Blur", "Basic", "Blob", "None"}; int display_optioncount = 7; int display_options[] = {DISPLAY_AIRC, DISPLAY_AIRP, DISPLAY_AIRV, DISPLAY_AIRH, DISPLAY_WARP, DISPLAY_PERS, DISPLAY_EFFE}; |
