diff options
| author | Ray <[email protected]> | 2021-06-13 17:08:30 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2021-06-13 17:08:30 +0200 |
| commit | 4b93feb172addaf266f2cccb2e08c170cf5b9767 (patch) | |
| tree | 3986fe085b1546a2bc364dbeddb38832b49d44e9 /src/raudio.c | |
| parent | d875891a3c2621ab40733ca3569eca9e054a6506 (diff) | |
| download | raylib-4b93feb172addaf266f2cccb2e08c170cf5b9767.tar.gz raylib-4b93feb172addaf266f2cccb2e08c170cf5b9767.zip | |
Remove trail spaces
Diffstat (limited to 'src/raudio.c')
| -rw-r--r-- | src/raudio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/raudio.c b/src/raudio.c index abc9579f..eebd4ce8 100644 --- a/src/raudio.c +++ b/src/raudio.c @@ -1784,7 +1784,7 @@ AudioStream LoadAudioStream(unsigned int sampleRate, unsigned int sampleSize, un // The size of a streaming buffer must be at least double the size of a period unsigned int periodSize = AUDIO.System.device.playback.internalPeriodSizeInFrames; - + // If the buffer is not set, compute one that would give us a buffer good enough for a decent frame rate unsigned int subBufferSize = (AUDIO.Buffer.defaultSize == 0)? AUDIO.System.device.sampleRate/30 : AUDIO.Buffer.defaultSize; @@ -2352,7 +2352,7 @@ static bool TextIsEqual(const char *text1, const char *text2) static const char *TextToLower(const char *text) { #define MAX_TEXT_BUFFER_LENGTH 1024 - + static char buffer[MAX_TEXT_BUFFER_LENGTH] = { 0 }; for (int i = 0; i < MAX_TEXT_BUFFER_LENGTH; i++) |
