I'm trying to display a custom png file in a pygame screen, but when I call
screen.blit(image, screen.get_rect().center)
it centers the image's upper left corner on the coordinates. How can I fix this so that the center of the image is on the coordinates?
Already referenced the following stackoverflow answer, but it didn't change my image position: How to centre an image in pygame?