This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
tags/2021-05-28
jules
18 years ago
parent
e039eeda07
commit
b20707793c
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/juce_core/io/files/juce_FileInputStream.cpp
+ 1
- 1
src/juce_core/io/files/juce_FileInputStream.cpp
View File
@@ -102,7 +102,7 @@ bool FileInputStream::setPosition (int64 pos)
{
pos = jlimit ((int64) 0, totalSize, pos);
needToSeek = currentPosition != pos;
needToSeek
|
= currentPosition != pos;
currentPosition = pos;
return true;
Write
Preview
Loading…
Cancel
Save