the imgs won't load from a subfolder. Whats weird is that even when the images are right beside the main code in the main folder it still does not work
background = pygame.image.load("img/road.png").convert()
guy = pygame.image.load("img/idle.png").convert()
guy.set_colorkey(WHITE)
zombie = pygame.image.load("img/zombie.png").convert()
zombie.set_colorkey(GREEN)
The error message:
Traceback (most recent call last): File "c:/Users/tcric/Documents/code/game_jam.py", line 41, in <module> background = pygame.image.load("img/road.png").convert()
pygame.error: Couldn't open img/road.png