mirror of https://github.com/odrling/Aegisub
Fix for avisynth.h for it to work with avisynthx64
Originally committed to SVN as r1845.
This commit is contained in:
parent
346520fbce
commit
96bb7cbe53
|
@ -566,8 +566,9 @@ private:
|
|||
if (!init && IsClip() && clip)
|
||||
clip->Release();
|
||||
// make sure this copies the whole struct!
|
||||
((__int32*)this)[0] = ((__int32*)src)[0];
|
||||
((__int32*)this)[1] = ((__int32*)src)[1];
|
||||
//((__int32*)this)[0] = ((__int32*)src)[0];
|
||||
//((__int32*)this)[1] = ((__int32*)src)[1];
|
||||
memcpy(this, src, sizeof(AVSValue));
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue