mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2026-06-17 14:21:08 +00:00
Fix print vs println typo
This commit is contained in:
@@ -27,7 +27,7 @@ public class AudioDepacketizer {
|
|||||||
|
|
||||||
// Put it on the decoded queue
|
// Put it on the decoded queue
|
||||||
if (!decodedUnits.offer(new ShortBufferDescriptor(pcmData, 0, decodeLen))) {
|
if (!decodedUnits.offer(new ShortBufferDescriptor(pcmData, 0, decodeLen))) {
|
||||||
System.out.print("Audio player too slow! Forced to drop decoded samples");
|
System.out.println("Audio player too slow! Forced to drop decoded samples");
|
||||||
// Clear out the queue
|
// Clear out the queue
|
||||||
decodedUnits.clear();
|
decodedUnits.clear();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user