mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-22 10:03:48 +00:00
Untabify
This commit is contained in:
parent
acd986d6b7
commit
5c2f4ed272
1 changed files with 7 additions and 7 deletions
|
@ -81,13 +81,13 @@ class Indexer {
|
||||||
|
|
||||||
case eWrapMode_Wrap:
|
case eWrapMode_Wrap:
|
||||||
{
|
{
|
||||||
r = i;
|
r = i;
|
||||||
if ((l & (l-1)) == 0) {
|
if ((l & (l-1)) == 0) {
|
||||||
r = (r + l) & (l - 1);
|
r = (r + l) & (l - 1);
|
||||||
} else {
|
} else {
|
||||||
if (r >= l) { r -= l; }
|
if (r >= l) { r -= l; }
|
||||||
if (r < 0) { r += l; }
|
if (r < 0) { r += l; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue