1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-14 20:57:10 +00:00

C0 and Cx1 now changes depending on DIM

This commit is contained in:
?
2019-02-25 14:50:39 +01:00
committed by Zeno Rogue
parent 02920b5d2f
commit 5ae2714e37
2 changed files with 10 additions and 4 deletions

View File

@@ -3180,7 +3180,9 @@ extern ld backbrightness;
void initcells();
void precalc();
extern const hyperpoint C0;
extern const hyperpoint C02, C03;
#define C0 (DIM == 2 ? C02 : C03)
extern long long circlesize[100], disksize[100];
extern ld circlesizeD[10000];