mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Do the same for subchannel log
This commit is contained in:
committed by
GitHub
parent
5e95e85944
commit
645a6caae3
@@ -164,12 +164,18 @@ namespace Aaru.Core.Logging
|
||||
if(raw)
|
||||
for(uint i = 12 * block; i < (12 * block) + 12; i++)
|
||||
{
|
||||
if(r[i] == 0 &&
|
||||
s[i] == 0 &&
|
||||
t[i] == 0 &&
|
||||
u[i] == 0 &&
|
||||
v[i] == 0 &&
|
||||
w[i] == 0)
|
||||
if((r[i] == 0 &&
|
||||
s[i] == 0 &&
|
||||
t[i] == 0 &&
|
||||
u[i] == 0 &&
|
||||
v[i] == 0 &&
|
||||
w[i] == 0) ||
|
||||
(r[i] == 0xFF &&
|
||||
s[i] == 0xFF &&
|
||||
t[i] == 0xFF &&
|
||||
u[i] == 0xFF &&
|
||||
v[i] == 0xFF &&
|
||||
w[i] == 0xFF))
|
||||
continue;
|
||||
|
||||
rwEmpty = false;
|
||||
@@ -261,4 +267,4 @@ namespace Aaru.Core.Logging
|
||||
_logSw.Flush();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user