I thouhgt I had this solved. But the value is 1 and it looks like if K is pressed then it changes to 0 and then back to 1.
The value of start is defined as 0 at the first. There are if start=1 statements but none but this for changing the value of start
case OAPI_KEY_K: // start
if (0 ==start)
{
PlayVesselWave3(MySoundID,START,NOLOOP,255,22100);
start=1;
}
else
{
start = 0;
}
return 1;