Some more mouse helper functions and fixed the video warnings.

This commit is contained in:
OBattler
2024-01-17 03:59:56 +01:00
parent e140f3335c
commit 19af46a8c2
5 changed files with 12 additions and 12 deletions

View File

@@ -454,6 +454,15 @@ mouse_scale(int x, int y)
mouse_scale_y(y);
}
void
mouse_scale_axis(int axis, int val)
{
if (axis == 1)
mouse_scale_y(val);
else if (axis == 0)
mouse_scale_x(val);
}
void
mouse_set_z(int z)
{