DeprecationWarning: an integer is required (got type float). Implicit conversion to integers using int is deprecated, and may be removed in a fut
int
The message appears also with explicit conversions so, to be safe do:
a = round(x) b = round(y) win.blit(playerStand, (a, b))
W1JGH