Skip to content

Commit

Permalink
fix #15 - update portaudio imports
Browse files Browse the repository at this point in the history
  • Loading branch information
fogleman committed Oct 6, 2015
1 parent 9c09567 commit 2e5d57e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -14,7 +14,7 @@ http://www.michaelfogleman.com/static/nes/

github.com/go-gl/gl/v2.1/gl
github.com/go-gl/glfw/v3.1/glfw
code.google.com/p/portaudio-go/portaudio
github.com/gordonklaus/portaudio

The portaudio-go dependency requires PortAudio on your system:

Expand Down
2 changes: 1 addition & 1 deletion ui/audio.go
@@ -1,6 +1,6 @@
package ui

import "code.google.com/p/portaudio-go/portaudio"
import "github.com/gordonklaus/portaudio"

type Audio struct {
stream *portaudio.Stream
Expand Down
3 changes: 1 addition & 2 deletions ui/run.go
Expand Up @@ -4,10 +4,9 @@ import (
"log"
"runtime"

"code.google.com/p/portaudio-go/portaudio"

"github.com/go-gl/gl/v2.1/gl"
"github.com/go-gl/glfw/v3.1/glfw"
"github.com/gordonklaus/portaudio"
)

const (
Expand Down

0 comments on commit 2e5d57e

Please sign in to comment.