diff options
author | Christian C <cc@localhost> | 2025-03-07 22:21:44 -0800 |
---|---|---|
committer | Christian C <cc@localhost> | 2025-03-07 22:21:44 -0800 |
commit | 473bcd599f9378583c4bc72764fc2f445e0d2768 (patch) | |
tree | 4ce9f8e39967a2ac9bb99b0e0c17e3b8bafa248c /src/prog.c | |
parent | abd10d51c7e65880d236b38d4c8384a712ebd660 (diff) |
Separate visual exe
Diffstat (limited to 'src/prog.c')
-rw-r--r-- | src/prog.c | 8 |
1 files changed, 0 insertions, 8 deletions
@@ -2,10 +2,6 @@ #include <stdlib.h> #include <unistd.h> -#ifdef VISUAL -#include <raylib.h> -#endif - #include <lib/lib.h> #include <lib/png.h> #include <lib/bool.h> @@ -195,9 +191,6 @@ int main(int argc, char** argv) //-END-OF-PROCESSING----------------------------- //----------------------------------------------- -#ifdef VISUAL -#include <snippets/raylib_block.c> -#else //----------------------------------------------- //-SAVE-MASK-AS-BINARY-AND-PNG------------------- //----------------------------------------------- @@ -210,7 +203,6 @@ int main(int argc, char** argv) write_array(bin_file, masks, width*height*sizeof(uint16_t)); free(masks); } -#endif TIME(ts_g_end); if (!silent) { printf("Finished in %f ms\n", 1000*diff_time(&ts_g_end, &ts_g_start)); |