Skip to content

Commit ab0d6de

Browse files
committed
Fixed Bug with image creation
1 parent 2bb9f33 commit ab0d6de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Linux/src/main.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ int main(int argc, char* argv[])
9696
SDL_Surface* surface = generateSurface(i);
9797
if (surface == nullptr) return -1;
9898

99-
saveImage(surface, "cache/" + std::to_string(i) + ".png");
99+
saveImage(surface, ".cache/" + std::to_string(i) + ".png");
100100
SDL_FreeSurface(surface);
101101
}
102102

0 commit comments

Comments
 (0)