diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2012-06-01 19:34:17 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2012-06-01 19:34:17 (GMT) |
| commit | 939265a77de93fd6e9b5136ad948fc16ce077918 (patch) | |
| tree | 431f525f5f62482c282fd7d3155f883905b6eb04 /src/interface.c | |
| parent | 8dcccbc4fce604664fd353101bbc2b669b1f83cb (diff) | |
| download | powder-939265a77de93fd6e9b5136ad948fc16ce077918.zip powder-939265a77de93fd6e9b5136ad948fc16ce077918.tar.gz | |
Deferred loading of save files
Diffstat (limited to 'src/interface.c')
| -rw-r--r-- | src/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interface.c b/src/interface.c index 6ee5974..689ef13 100644 --- a/src/interface.c +++ b/src/interface.c @@ -820,7 +820,7 @@ void draw_svf_ui(pixel *vid_buf, int alternate)// all the buttons at the bottom } // the reload button - c = (svf_open || svf_fileopen) ? 255 : 128; + c = (svf_last) ? 255 : 128; drawtext(vid_buf, 23, YRES+(MENUSIZE-14), "\x91", c, c, c, 255); drawrect(vid_buf, 19, YRES+(MENUSIZE-16), 16, 14, c, c, c, 255); |
