Fixed an error of thought with regards to maximum size of a part.

This commit is contained in:
Erik Zandvliet 2013-11-29 14:28:38 +01:00
parent ae17368228
commit eaaa2936b4
2 changed files with 26 additions and 23 deletions

View file

@ -104,15 +104,15 @@ namespace DTSC {
class Part{
public:
short getSize();
void setSize(short newSize);
long getSize();
void setSize(long newSize);
short getDuration();
void setDuration(short newDuration);
long getOffset();
void setOffset(long newOffset);
char* getData();
private:
char data[8];
char data[9];
};
class Key{