extern int Float_Copy(int);
int Physics_CalcReflect(int x)
{
  int y;
  if (x != -1) {
    y = x;
  } else {
    y = Float_Copy(x);
  }
  return y;
}
