exporting queuecircle

This commit is contained in:
Zeno Rogue 2019-07-12 23:15:42 +02:00
parent 2ff2917184
commit f677bce4ad
2 changed files with 3 additions and 1 deletions

View File

@ -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<dqi_circle>(prio);
ptd.x = x;
ptd.y = y;

View File

@ -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);
}