Remove forced alignment on landing buffer.

This commit is contained in:
Brandon Wright 2018-06-04 16:14:59 -05:00
parent 3af67e1e68
commit cb7226d071
1 changed files with 1 additions and 1 deletions

View File

@ -530,7 +530,7 @@ bool8 S9xInitSound (int buffer_ms, int lag_ms)
return (FALSE);
if (msu::landing_buffer)
delete[] msu::landing_buffer;
msu::landing_buffer = (uint8*) new uint32[msu::buffer_size / 2]; // Ensure 4-byte alignment
msu::landing_buffer = new uint8[msu::buffer_size * 2];
if (!msu::landing_buffer)
return (FALSE);