1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-05-22 05:52:07 +00:00

removed some more unused variables

This commit is contained in:
Zeno Rogue
2026-05-02 13:17:53 +02:00
parent 1906c597c1
commit 6db1445db6
6 changed files with 2 additions and 18 deletions
-2
View File
@@ -1051,8 +1051,6 @@ EX bool valid_dir(const vector<char>& ad, int j, cell *c) {
int a = 0;
for(auto& dd: ad1) if(dd == 1) a++;
int a0 = 0;
for(auto& dd: ad) if(dd == 1) a0++;
return a < 6;
}