Fixed an error of thought with regards to maximum size of a part.
This commit is contained in:
parent
ae17368228
commit
eaaa2936b4
2 changed files with 26 additions and 23 deletions
|
@ -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{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue