Skip to content

Commit 4175749

Browse files
committed
fix return in void function
1 parent faaf896 commit 4175749

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/openFrameworks/video/ofVideoBaseTypes.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ class ofBaseVideoPlayer: virtual public ofBaseVideo{
225225
/// \sa isLoaded()
226226
virtual void loadAsync(const of::filesystem::path & fileName);
227227
virtual bool loadAsync(std::string name) {
228-
return loadAsync(of::filesystem::path(name));
228+
loadAsync(of::filesystem::path(name));
229229
}
230230
/// \brief Play the video from the current playhead position.
231231
///

0 commit comments

Comments
 (0)