Skip to content

Commit

Permalink
Fix moduls
Browse files Browse the repository at this point in the history
  • Loading branch information
daelsepara committed Jul 29, 2024
1 parent 84a8fac commit 3c3423e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utilities.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ namespace Fractal
{
for (auto x = 0; x < grid[y].size(); x++)
{
grid[y][x] = Uint8(grid[y][x] % 255);
grid[y][x] = Uint8(grid[y][x] % 256);
}
}
}
Expand Down

0 comments on commit 3c3423e

Please sign in to comment.