1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-04 03:40:07 +00:00

VC6 compatibility updates

This commit is contained in:
Julian Storer 2009-12-22 20:59:32 +00:00
parent 24a121e4dd
commit a2183daee5
7 changed files with 32 additions and 44 deletions

View file

@ -119,7 +119,7 @@ void OutputStream::writeCompressedInt (int value)
un >>= 8;
}
data[0] = num;
data[0] = (uint8) num;
if (value < 0)
data[0] |= 0x80;