mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-22 09:53: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:
|
||||
{
|
||||
r = i;
|
||||
if ((l & (l-1)) == 0) {
|
||||
r = (r + l) & (l - 1);
|
||||
} else {
|
||||
if (r >= l) { r -= l; }
|
||||
if (r < 0) { r += l; }
|
||||
}
|
||||
r = i;
|
||||
if ((l & (l-1)) == 0) {
|
||||
r = (r + l) & (l - 1);
|
||||
} else {
|
||||
if (r >= l) { r -= l; }
|
||||
if (r < 0) { r += l; }
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue