1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-03 03:23:33 +02:00

More argument cast errors in defined functions

This commit is contained in:
Dave Jolley 2020-01-22 17:53:18 +00:00
parent ae8f58614f
commit 01045ff247

View File

@ -100,6 +100,11 @@ public:
void drawimage(int t, int xp, int yp, bool cent=false);
void _drawimagecol(int t, int xp, int yp, int r, int g, int b, bool cent= false);
template<class A, class B, class C>
void drawimagecol(A t, B xp, C yp)
{
_drawimagecol(t, xp, yp, 0, 0, 0, false);
}
template <class A, class B, class C, class D, class E, class F>
void drawimagecol(A t, B xp, C yp, D r, E g, F b, bool cent = false)
{