mirror of
https://github.com/overte-org/overte.git
synced 2025-04-22 11:53:28 +02:00
ubuntu build fix (remove std::memset ...)
This commit is contained in:
parent
e64c81420e
commit
76adb952a3
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ public:
|
|||
return;
|
||||
}
|
||||
for (uint16_t i = 0; i < _channelCount; ++i) {
|
||||
std::memset(_frameBuffer[i], 0, sizeof(T)*_frameCountMax);
|
||||
memset(_frameBuffer[i], 0, sizeof(T)*_frameCountMax);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue