diff --git a/README.md b/README.md new file mode 100644 index 0000000..1e1dcbd --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ + +# Screenshots + +![alt tag](https://github.com/MitchellHansen/mandlebrot/assets/screenshot.png) diff --git a/assets/screenshot.PNG b/assets/screenshot.PNG new file mode 100644 index 0000000..4d491e2 Binary files /dev/null and b/assets/screenshot.PNG differ diff --git a/src/main.cpp b/src/main.cpp index 5ad998b..ed73f97 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -57,7 +57,6 @@ void func(int id, int count, sf::Uint8* pixels) { pixels[(pixel_y * WINDOW_X + pixel_x) * 4 + 1] = (val >> 8) & 0xff; pixels[(pixel_y * WINDOW_X + pixel_x) * 4 + 2] = (val >> 16) & 0xff; pixels[(pixel_y * WINDOW_X + pixel_x) * 4 + 3] = 200; - //memcpy(&pixels[(pixel_y * pixel_x + pixel_y) * 4], (void*)&c, sizeof(c)); } } }