min and max were renamed to minv and and maxv. You can either stick to the original code and just replace the renamed funtions or instead use
Code:
camera.arc = clamp(camera.arc,10,120);


where it originally was
Code:
camera.arc = min (max (camera.arc, 10), 120);





Always learn from history, to be sure you make the same mistakes again...