1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-25 02:04:23 +00:00
This commit is contained in:
jules 2007-10-10 14:59:01 +00:00
parent 0c0ef8c87d
commit cf7ae76019
3 changed files with 3 additions and 3 deletions

View file

@ -97,7 +97,7 @@ bool FileInputStream::setPosition (int64 pos)
{
pos = jlimit ((int64) 0, totalSize, pos);
needToSeek |= currentPosition != pos;
needToSeek |= (currentPosition != pos);
currentPosition = pos;
return true;