mirror of
https://github.com/isledecomp/SIEdit.git
synced 2025-02-17 00:40:42 -05:00
lib: cleaned up old references
This commit is contained in:
parent
1ab22fd85c
commit
bc4ddfd7ac
2 changed files with 3 additions and 4 deletions
|
@ -106,7 +106,7 @@ RIFF::Chk RIFF::BeginChunk(FileBase *f, uint32_t type)
|
|||
|
||||
void RIFF::EndChunk(FileBase *f, const Chk &stat)
|
||||
{
|
||||
std::ios::pos_type now = f->pos();
|
||||
size_t now = f->pos();
|
||||
|
||||
uint32_t sz = now - stat.data_start;
|
||||
|
||||
|
|
|
@ -36,8 +36,8 @@ public:
|
|||
|
||||
struct Chk
|
||||
{
|
||||
std::ios::pos_type size_position;
|
||||
std::ios::pos_type data_start;
|
||||
size_t size_position;
|
||||
size_t data_start;
|
||||
};
|
||||
|
||||
static Chk BeginChunk(FileBase *f, uint32_t type);
|
||||
|
@ -133,7 +133,6 @@ public:
|
|||
class pad_ : public RIFF
|
||||
{
|
||||
public:
|
||||
static void WriteArbitraryPadding(std::ostream &os, uint32_t size);
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue