aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS_TheReturn
diff options
context:
space:
mode:
authorpfg <[email protected]>2017-03-07 17:33:39 -0800
committerpfg <[email protected]>2017-03-07 17:33:39 -0800
commit4989356d6797335b44060ae94c9af34404773506 (patch)
tree8b3cbeec1f402048df3f42268922e1e4c69c35a4 /ShiftOS_TheReturn
parent4e52b9391291aeb8f76703c1ac317d13ea47370b (diff)
downloadshiftos_thereturn-4989356d6797335b44060ae94c9af34404773506.tar.gz
shiftos_thereturn-4989356d6797335b44060ae94c9af34404773506.tar.bz2
shiftos_thereturn-4989356d6797335b44060ae94c9af34404773506.zip
Very early version of FormatEditor
Diffstat (limited to 'ShiftOS_TheReturn')
-rw-r--r--ShiftOS_TheReturn/AudioManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS_TheReturn/AudioManager.cs b/ShiftOS_TheReturn/AudioManager.cs
index a548cf6..7f6f5e9 100644
--- a/ShiftOS_TheReturn/AudioManager.cs
+++ b/ShiftOS_TheReturn/AudioManager.cs
@@ -69,7 +69,7 @@ namespace ShiftOS.Engine
{
int track = rnd.Next(0, _provider.Count);
byte[] mp3 = _provider.GetTrack(track);
- System.IO.File.WriteAllBytes("temp.mp3", mp3);
+ System.IO.File.WriteAllBytes("temp.mp3", mp3);
_reader = new AudioFileReader("temp.mp3");
_out = new WaveOut();
_out.Init(_reader);