Just delete the things you don't want:
To remove the crosshair portion, delete the section that begins:
diff -r -c -N old/drawgfx.c src/drawgfx.c
To remove the button remapping portion, delete the section that begins:
diff -r -c -N old/inptport.c src/inptport.c
So, to clarify, for the crosshair part, you would remove:
diff -r -c -N old/drawgfx.c src/drawgfx.c
*** old/drawgfx.c Thu Sep 14 12:25:08 2006
--- src/drawgfx.c Thu Sep 14 12:22:42 2006
***************
*** 3544,3550 ****
plot_pixel(bitmap,x,y,pen);
}
! static int crosshair_enable=1;
void drawgfx_toggle_crosshair(void)
{
--- 3544,3550 ----
plot_pixel(bitmap,x,y,pen);
}
! static int crosshair_enable=0;
void drawgfx_toggle_crosshair(void)
{
That's it...
Pretty straightforward.