fix avi dumping on x64

problem was 4bytes only gap before lpParams.
did I break the struct for 32bit?
This commit is contained in:
zeromus 2017-06-20 23:27:44 -05:00 committed by GitHub
parent a7f7583fcc
commit 390e5b1a26
1 changed files with 2 additions and 2 deletions

View File

@ -302,7 +302,7 @@ namespace BizHawk.Client.EmuHawk
out IntPtr ppavi,
ref AVISTREAMINFOW psi);
[StructLayout(LayoutKind.Sequential, Pack = 1)]
[StructLayout(LayoutKind.Sequential)]
public struct AVICOMPRESSOPTIONS
{
public int fccType;
@ -573,4 +573,4 @@ namespace BizHawk.Client.EmuHawk
}
}
}
}