1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
freebsd-ports/games/eboard/files/patch-main.cc
Jean-Yves Lefort 6c2202a9ef Update to 1.0.3
2007-01-30 20:40:50 +00:00

12 lines
297 B
C++

--- main.cc.orig Mon Jan 22 18:57:40 2007
+++ main.cc Tue Jan 30 21:07:51 2007
@@ -139,7 +139,7 @@
char devname[64];
for(i=0;i<10;i++) {
- snprintf(devname,64,"/dev/js%d",i);
+ snprintf(devname,64,"/dev/input/js%d",i);
fd = open(devname,O_RDONLY);
if (fd >= 0) break;
}