summaryrefslogtreecommitdiff
path: root/src/interface.c
diff options
context:
space:
mode:
authorSimon Robertshaw <simon@hardwired.org.uk>2011-11-18 15:32:33 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2011-11-18 15:32:33 (GMT)
commitc1ec9e24aea93560628bf00d9e478b256353575d (patch)
treeb7540bf56803ab61046f666f81e081312dff446b /src/interface.c
parent534c0edc33285647d81331c0d55faab091d54722 (diff)
downloadpowder-c1ec9e24aea93560628bf00d9e478b256353575d.zip
powder-c1ec9e24aea93560628bf00d9e478b256353575d.tar.gz
Smaller radio buttons
Diffstat (limited to 'src/interface.c')
-rw-r--r--src/interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interface.c b/src/interface.c
index d33dba8..b874880 100644
--- a/src/interface.c
+++ b/src/interface.c
@@ -591,7 +591,7 @@ void ui_radio_draw(pixel *vid_buf, ui_checkbox *ed)
int nx, ny;
for(nx=-6; nx<=6; nx++)
for(ny=-6; ny<=6; ny++)
- if((nx*nx+ny*ny)<16/* && (nx*nx+ny*ny)>28*/)
+ if((nx*nx+ny*ny)<10)
blendpixel(vid_buf, ed->x+6+nx, ed->y+6+ny, 128, 128, 128, 255);
}
if (ed->focus)