From cdca62f4dffc1d83037b9c85b50abd060d7ec438 Mon Sep 17 00:00:00 2001 From: Jonas Jongejan Date: Wed, 1 Jun 2016 09:44:47 -0400 Subject: [PATCH] Change signature of android sound stream getTickCount --- addons/ofxAndroid/src/ofxAndroidSoundStream.cpp | 2 +- addons/ofxAndroid/src/ofxAndroidSoundStream.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/addons/ofxAndroid/src/ofxAndroidSoundStream.cpp b/addons/ofxAndroid/src/ofxAndroidSoundStream.cpp index e70da6bb4c3..1a91f05b0f2 100644 --- a/addons/ofxAndroid/src/ofxAndroidSoundStream.cpp +++ b/addons/ofxAndroid/src/ofxAndroidSoundStream.cpp @@ -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; } diff --git a/addons/ofxAndroid/src/ofxAndroidSoundStream.h b/addons/ofxAndroid/src/ofxAndroidSoundStream.h index 7db8f9026ec..01c8c83046d 100644 --- a/addons/ofxAndroid/src/ofxAndroidSoundStream.h +++ b/addons/ofxAndroid/src/ofxAndroidSoundStream.h @@ -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(); }