mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
FIX: 'data load' - now loads large files again (TITEST.txt)
This commit is contained in:
parent
64a977e514
commit
e8d15d0c18
2 changed files with 8 additions and 6 deletions
|
@ -67,7 +67,7 @@ void setGraphBuf(uint8_t *buf, size_t size) {
|
|||
if ( size > MAX_GRAPH_TRACE_LEN )
|
||||
size = MAX_GRAPH_TRACE_LEN;
|
||||
|
||||
for (uint16_t i = 0; i < size; ++i)
|
||||
for (uint32_t i = 0; i < size; ++i)
|
||||
GraphBuffer[i] = buf[i] - 128;
|
||||
|
||||
GraphTraceLen = size;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue