Fork of official USBDevice with support for STM32F446 Nucleo-64 added.
Fork of USBDevice by
Revision 61:a0613937ae07, committed 2016-01-27
- Comitter:
- crazyafrican
- Date:
- Wed Jan 27 00:37:14 2016 +0000
- Parent:
- 60:7662d9ed5011
- Commit message:
- fixed explicit conversion warning
Changed in this revision
USBAudio/USBAudio.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 7662d9ed5011 -r a0613937ae07 USBAudio/USBAudio.cpp --- a/USBAudio/USBAudio.cpp Fri Dec 25 22:51:12 2015 +0000 +++ b/USBAudio/USBAudio.cpp Wed Jan 27 00:37:14 2016 +0000 @@ -115,7 +115,7 @@ float USBAudio::getVolume() { - return (mute) ? 0.0 : volume; + return (mute) ? 0.0f : volume; }