1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-16 10:19:58 +00:00

one missing patch from export

This commit is contained in:
Zeno Rogue 2018-03-24 15:21:22 +01:00
parent 30c2239333
commit b8d2d0d878

View File

@ -2649,7 +2649,7 @@ void getcoord0(const hyperpoint& h, int& xc, int &yc, int &sc) {
// EYETODO sc = vid.eye * vid.radius * hscr[2]; // EYETODO sc = vid.eye * vid.radius * hscr[2];
} }
void queuechr(const hyperpoint& h, int size, char chr, int col, int frame = 0) { void queuechr(const hyperpoint& h, int size, char chr, int col, int frame) {
int xc, yc, sc; getcoord0(h, xc, yc, sc); int xc, yc, sc; getcoord0(h, xc, yc, sc);
queuechr(xc, yc, sc, size, chr, col, frame); queuechr(xc, yc, sc, size, chr, col, frame);
} }