remove printf and stdio.h
This commit is contained in:
parent
88a8bc413b
commit
99b226f39d
1 changed files with 1 additions and 2 deletions
|
@ -1,4 +1,3 @@
|
||||||
#include <stdio.h>
|
|
||||||
#include <glib.h>
|
#include <glib.h>
|
||||||
#include "render.h"
|
#include "render.h"
|
||||||
#include "gradient.h"
|
#include "gradient.h"
|
||||||
|
@ -28,7 +27,7 @@ void gradient_render(Surface *sf, int w, int h)
|
||||||
gradient_crossdiagonal(sf, w, h);
|
gradient_crossdiagonal(sf, w, h);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
printf("unhandled gradient\n");
|
g_message("unhandled gradient\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sf->data.planar.relief == Flat && sf->data.planar.border) {
|
if (sf->data.planar.relief == Flat && sf->data.planar.border) {
|
||||||
|
|
Loading…
Reference in a new issue