Moved line that unloaded screenshot image to different place because I put it in for loop by mistake

This commit is contained in:
Bartłomiej Szostak 2024-04-15 16:23:35 +02:00
parent 215f52b24e
commit dc06e3454f

View File

@ -354,9 +354,9 @@ int main(int argc, char *argv[]){
for(int i = 0; i <= 27; i++){
UnloadImage(characters_img[i]);
UnloadImage(image);
UnloadTexture(characters_tex[i]);
}
UnloadImage(image);
return 0;
}