diff --git a/src/Audio/AudioBuffer.cs b/src/Audio/AudioBuffer.cs
index bfdeda7..fdfb5e5 100644
--- a/src/Audio/AudioBuffer.cs
+++ b/src/Audio/AudioBuffer.cs
@@ -35,7 +35,7 @@ namespace MoonWorks.Audio
/// Offset in bytes from the top of the original buffer.
/// Length in bytes of the new buffer.
///
- public AudioBuffer CreateSubBuffer(int offset, uint length)
+ public AudioBuffer Slice(int offset, uint length)
{
return new AudioBuffer(Device, Format, BufferDataPtr + offset, length, false);
}