Skip to content

Commit

Permalink
use fixed point by default
Browse files Browse the repository at this point in the history
simply too many devices have a broken floating point implementation
  • Loading branch information
xdsopl committed Nov 24, 2024
1 parent 1fbec49 commit c93dff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/xdsopl/robot36/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ protected void onCreate(Bundle state) {
final int defaultSampleRate = 44100;
final int defaultChannelSelect = 0;
final int defaultAudioSource = MediaRecorder.AudioSource.MIC;
final int defaultAudioFormat = AudioFormat.ENCODING_PCM_FLOAT;
final int defaultAudioFormat = AudioFormat.ENCODING_PCM_16BIT;
final boolean defaultAutoSave = true;
final String defaultLanguage = "system";
if (state == null) {
Expand Down

0 comments on commit c93dff4

Please sign in to comment.