tweak: set DEBUG flag to false

This commit is contained in:
NunoSempere 2022-12-13 22:53:59 +00:00
parent a5394e8a88
commit 54fffb3b66
3 changed files with 3 additions and 3 deletions

View File

@ -30,7 +30,7 @@
#define ZOOM 1.4 /* Starting zoom level.*/ #define ZOOM 1.4 /* Starting zoom level.*/
#define ZOOM_VAL .1 /* Zooming value in zoomin/zoomout functions */ #define ZOOM_VAL .1 /* Zooming value in zoomin/zoomout functions */
#define BG_COLOR "#FEFEFE" /*"#1E1E2E" */ #define BG_COLOR "#FEFEFE" /*"#1E1E2E" */
#define DEBUG true #define DEBUG false
typedef enum { typedef enum {
goback, goback,

View File

@ -3,7 +3,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdbool.h> #include <stdbool.h>
#define LIBRE_N 12 #define LIBRE_N 12
#define DEBUG true #define DEBUG false
/* Inspired by https://libredirect.github.io/, but in C. */ /* Inspired by https://libredirect.github.io/, but in C. */

View File

@ -1,7 +1,7 @@
#include <string.h> #include <string.h>
#include <stdbool.h> #include <stdbool.h>
#include <stdio.h> #include <stdio.h>
#define DEBUG true #define DEBUG false
/* /*
See also: See also: