From c1ec9e24aea93560628bf00d9e478b256353575d Mon Sep 17 00:00:00 2001 From: Simon Robertshaw Date: Fri, 18 Nov 2011 15:32:33 +0000 Subject: Smaller radio buttons 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) -- cgit v0.9.2-21-gd62e