mirror of
https://github.com/AdAstra-LD/DS-Pokemon-Rom-Editor.git
synced 2026-08-26 12:56:15 -05:00
Fixed TM/HM write in Personal Data Editor
This commit is contained in:
@@ -226,7 +226,7 @@ namespace DSPRE.ROMFiles {
|
||||
|
||||
for (int j = 0; j < 32; j++) {
|
||||
if ((currentBitfield & (1 << j)) != 0) {
|
||||
result.Add((byte)(i * 32 + j+1));
|
||||
result.Add((byte)(i * 32 + j));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user