mirror of
https://github.com/godotengine/godot.git
synced 2024-11-25 21:52:51 +00:00
Fixes Theora build
Changes memcpy() -> copymem()
This commit is contained in:
parent
af06843982
commit
ba61a1dfd3
@ -388,7 +388,7 @@ void VideoStreamTheoraplayer::pop_frame(Ref<ImageTexture> p_tex) {
|
||||
{
|
||||
DVector<uint8_t>::Write wr = data.write();
|
||||
uint8_t* ptr = wr.ptr();
|
||||
memcpy(ptr, f->getBuffer(), imgsize);
|
||||
copymem(ptr, f->getBuffer(), imgsize);
|
||||
}
|
||||
/*
|
||||
for (int i=0; i<h; i++) {
|
||||
|
Loading…
Reference in New Issue
Block a user