Fix DTSC tools compiling
This commit is contained in:
parent
ec84fac33e
commit
05364aad2e
5 changed files with 7 additions and 7 deletions
|
@ -336,7 +336,7 @@ bool FLV::Tag::DTSCLoader(DTSC::Stream & S){
|
|||
/// Helper function that properly sets the tag length from the internal len variable.
|
||||
void FLV::Tag::setLen(){
|
||||
int len4 = len - 4;
|
||||
int i = data+len-1;
|
||||
int i = len-1;
|
||||
data[--i] = (len4) & 0xFF;
|
||||
len4 >>= 8;
|
||||
data[--i] = (len4) & 0xFF;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue