mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2024-11-24 05:25:49 +01:00
Untabify
This commit is contained in:
parent
acd986d6b7
commit
5c2f4ed272
@ -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 New Issue
Block a user