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

removed functions fix6 and fix7

This commit is contained in:
Zeno Rogue
2019-08-09 14:12:33 +02:00
parent 0e57fd1cc0
commit ef89c7ed9d
8 changed files with 10 additions and 15 deletions

View File

@@ -5,9 +5,6 @@
namespace hr {
int fix6(int a) { return (a+MODFIXER)%S6; }
int fix7(int a) { return (a+MODFIXER)%S7; }
int dirdiff(int dd, int t) {
dd %= t;
if(dd<0) dd += t;