mirror of
https://github.com/g4klx/MMDVMHost
synced 2025-12-21 23:45:49 +08:00
Build error fix: Rename m_data to data in YSFPayload.cpp
This commit is contained in:
@@ -478,7 +478,7 @@ void CYSFPayload::processVDMode2(unsigned char* data, unsigned char fn)
|
||||
// Deinterleave
|
||||
for(unsigned int i = 0U; i < 104U; i++) {
|
||||
unsigned int n = INTERLEAVE_TABLE_26_4[i];
|
||||
bool s = READ_BIT1(m_data, offset+n);
|
||||
bool s = READ_BIT1(data, offset+n);
|
||||
WRITE_BIT1(vch, i, s);
|
||||
}
|
||||
|
||||
@@ -512,7 +512,7 @@ void CYSFPayload::processVDMode2(unsigned char* data, unsigned char fn)
|
||||
for(unsigned int i = 0U; i < 104U; i++) {
|
||||
unsigned int n = INTERLEAVE_TABLE_26_4[i];
|
||||
bool s = READ_BIT1(vch, i);
|
||||
WRITE_BIT1(m_data, offset+n, s);
|
||||
WRITE_BIT1(data, offset+n, s);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user