mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
REFACTOR: Use preferred braces style.
This commit is contained in:
@@ -233,7 +233,7 @@ namespace DiscImageChef
|
||||
ushort preOffset = (ushort)(typeAndTimeZone & 0xFFF);
|
||||
short offset;
|
||||
|
||||
if((preOffset & 0x800) == 0x800) { offset = (short)(preOffset | 0xF000); }
|
||||
if((preOffset & 0x800) == 0x800) offset = (short)(preOffset | 0xF000);
|
||||
else offset = (short)(preOffset & 0x7FF);
|
||||
|
||||
if(offset == -2047)
|
||||
|
||||
Reference in New Issue
Block a user