Skip to content

Commit

Permalink
Change signature of android sound stream getTickCount
Browse files Browse the repository at this point in the history
  • Loading branch information
HalfdanJ committed Jun 1, 2016
1 parent 8a895b0 commit cdca62f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion addons/ofxAndroid/src/ofxAndroidSoundStream.cpp
Expand Up @@ -174,7 +174,7 @@ void ofxAndroidSoundStream::close(){
ofLogError("ofxAndroidSoundStream") << "close(): couldn't get OFAndroidSoundStream instance or stop method";
}

long unsigned long ofxAndroidSoundStream::getTickCount() const{
uint64_t ofxAndroidSoundStream::getTickCount() const{
return tickCount;
}

Expand Down
4 changes: 2 additions & 2 deletions addons/ofxAndroid/src/ofxAndroidSoundStream.h
Expand Up @@ -22,8 +22,8 @@ class ofxAndroidSoundStream : public ofBaseSoundStream{
void start();
void stop();
void close();
long unsigned long getTickCount() const;

uint64_t getTickCount() const;

ofSoundDevice getInDevice() const{ return ofSoundDevice(); }
ofSoundDevice getOutDevice() const{ return ofSoundDevice(); }
Expand Down

0 comments on commit cdca62f

Please sign in to comment.