X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=src%2Fsstlinux.c;h=422c30593a1e5df6e88e4bfbccd0b2b2f0252933;hp=3c2ebbeb78fd5f48cb1d5d63933c481d8e8fc13b;hb=d380c90aaabc032207ce0f298186cfa7064cf100;hpb=e535e2ef833a03ec84d0f002d684c07ddde893f1 diff --git a/src/sstlinux.c b/src/sstlinux.c index 3c2ebbe..422c305 100644 --- a/src/sstlinux.c +++ b/src/sstlinux.c @@ -14,14 +14,17 @@ static int fd = 0; void sound(unsigned int freq) { #ifdef HAVE_LINUX_KD_H - if(fd==0) fd=open("/dev/console", O_RDONLY); - if(fd>0) ioctl(fd, KDMKTONE, 1193180/freq + (0xFFFF<<16)); + if (fd==0) + fd=open("/dev/console", O_RDONLY); + if (fd>0) + ioctl(fd, KDMKTONE, 1193180/freq + (0xFFFF<<16)); #endif } void nosound(void) { #ifdef HAVE_LINUX_KD_H - if(fd>0) ioctl(fd, KDMKTONE, 0); + if(fd>0) + ioctl(fd, KDMKTONE, 0); #endif }