I've been trying to organize my game so I decided to put all my images into a separate folder. Now I'm trying to load the images again and it's giving me this error:
pygame.error: Couldn't open ./resouces/mage.png
Here's my code:
char = pg.image.load(os.path.join('./resouces','mage.png')).convert()
By the way, I've defined pg as pygame using:
pg = pygame
,
I don't know if this is a problem or not.
I've also tried doing pg.image.load(./resources/mage.png)
, which gave me the same error.