Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/filedevice/seadArchiveFileDevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class ArchiveFileDevice : public FileDevice
virtual s32 doConvertPathToEntryID_(const SafeString& path);
virtual bool doSetCurrentDirectory_(const SafeString& path);

ArchiveFileHandle* getArchiveFileHandle_(FileHandle* handle) const;
ArchiveFileHandle* getArchiveFileHandle_(FileHandle* handle);
ArchiveFileHandle* constructArchiveFileHandle_(FileHandle* handle) const;

ArchiveRes* mArchive;
Expand Down
3 changes: 1 addition & 2 deletions modules/src/filedevice/seadArchiveFileDevice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,7 @@ bool ArchiveFileDevice::doGetFileSize_(u32* fileSize, FileHandle* handle)
return true;
}

ArchiveFileDevice::ArchiveFileHandle*
ArchiveFileDevice::getArchiveFileHandle_(FileHandle* handle) const
ArchiveFileDevice::ArchiveFileHandle* ArchiveFileDevice::getArchiveFileHandle_(FileHandle* handle)
{
return reinterpret_cast<ArchiveFileHandle*>(getHandleBaseHandleBuffer_(handle).getBufferPtr());
}
Expand Down
Loading