mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Fix a horrifying bug which was causing all data from USB to be discarded.
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
Fluxmap& Fluxmap::appendIntervals(std::vector<uint8_t>& intervals)
|
||||
{
|
||||
return appendIntervals(&_intervals[0], _intervals.size());
|
||||
return appendIntervals(&intervals[0], intervals.size());
|
||||
}
|
||||
|
||||
Fluxmap& Fluxmap::appendIntervals(const uint8_t* ptr, size_t len)
|
||||
|
||||
@@ -56,7 +56,6 @@ void Track::forceReread()
|
||||
|
||||
void CapturedTrack::reallyRead()
|
||||
{
|
||||
|
||||
usbSeek(track);
|
||||
_fluxmap = usbRead(side, revolutions);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user