From f677bce4adc836964ae7fd7695138ad3887c22bc Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 12 Jul 2019 23:15:42 +0200 Subject: [PATCH] exporting queuecircle --- drawing.cpp | 2 +- hyper.h | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/drawing.cpp b/drawing.cpp index 61216145..f99e9589 100644 --- a/drawing.cpp +++ b/drawing.cpp @@ -1612,7 +1612,7 @@ void queuechr(int x, int y, int shift, int size, char chr, color_t col, int fram ptd.frame = frame ? (poly_outline & ~ 255) : 0; } -void queuecircle(int x, int y, int size, color_t color, PPR prio = PPR::CIRCLE, color_t fillcolor = 0) { +void queuecircle(int x, int y, int size, color_t color, PPR prio, color_t fillcolor) { auto& ptd = queuea(prio); ptd.x = x; ptd.y = y; diff --git a/hyper.h b/hyper.h index 3f776984..9a5cc71c 100644 --- a/hyper.h +++ b/hyper.h @@ -5598,4 +5598,6 @@ extern renderbuffer *floor_textures; int wingphase(int period, int phase = 0); +void queuecircle(int x, int y, int size, color_t color, PPR prio = PPR::CIRCLE, color_t fillcolor = 0); + } \ No newline at end of file