diff options
author | FreeArtMan <dos21h@gmail.com> | 2015-12-30 19:20:20 +0000 |
---|---|---|
committer | FreeArtMan <dos21h@gmail.com> | 2015-12-30 19:20:20 +0000 |
commit | a9d66c6a759515c7061e2e8aac661eeb0082ea1e (patch) | |
tree | da0bfb62d614fcad482cc5267f0a4348cbde5256 /draw | |
parent | 03a2ac933087722b3754f5eca349b26193e9bffd (diff) | |
download | radiola-a9d66c6a759515c7061e2e8aac661eeb0082ea1e.tar.gz radiola-a9d66c6a759515c7061e2e8aac661eeb0082ea1e.zip |
More configurable sources. Move some math functions to core/math.h. Move delay filter from sdr_fm
Diffstat (limited to 'draw')
-rw-r--r-- | draw/glui.c | 4 | ||||
-rw-r--r-- | draw/glui.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/draw/glui.c b/draw/glui.c index e056324..0f1e360 100644 --- a/draw/glui.c +++ b/draw/glui.c @@ -1,6 +1,6 @@ #include "glui.h" -#if defined(OS_LINUX) +#if def(OS_LINUX) #define DEFAULT_TITLE "RADIOLA" #define SCREEN_X 1024 @@ -171,4 +171,4 @@ int glui_close( glui_t *t ) return ret; } -#endif
\ No newline at end of file +#endif diff --git a/draw/glui.h b/draw/glui.h index 17c49da..9206bdf 100644 --- a/draw/glui.h +++ b/draw/glui.h @@ -9,7 +9,7 @@ #include <termios.h> #include <unistd.h> -#if defined(OS_LINUX) +#if def(OS_LINUX) #include <SDL2/SDL.h> @@ -60,4 +60,4 @@ glui_color_t glui_waterfall_color( uint8_t d ); //close terminal ui int glui_close( glui_t *t ); #endif -#endif
\ No newline at end of file +#endif |