1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-21 17:07:40 +00:00

fixed the orb drawings

This commit is contained in:
Zeno Rogue
2018-08-01 15:03:48 +02:00
parent 9220938e79
commit 6b4ed57152
2 changed files with 12 additions and 11 deletions

View File

@@ -3747,5 +3747,6 @@ bool saved_tortoise_on(cell *c);
#define RING(i) for(double i=0; i<=S84+1e-6; i+=S3 * pow(.5, vid.linequality))
#define REVRING(i) for(double i=S84; i>=-1e-6; i-=S3 * pow(.5, vid.linequality))
#define PRING(i) for(double i=0; i<=S84+1e-6; i+= pow(.5, vid.linequality))
#define REVPRING(i) for(double i=S84; i>=-1e-6; i-=pow(.5, vid.linequality))
}