Commit 89640518 authored by cutealien's avatar cutealien

Tiny comment fix.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@5105 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 8db0549e
......@@ -116,7 +116,6 @@ u32 CFileList::getFileSize(u32 index) const
return index < Files.size() ? Files[index].Size : 0;
}
//! Returns the size of a file
u32 CFileList::getFileOffset(u32 index) const
{
return index < Files.size() ? Files[index].Offset : 0;
......
......@@ -105,7 +105,7 @@ public:
//! Returns the size of a file
virtual u32 getFileSize(u32 index) const _IRR_OVERRIDE_;
//! Returns the offest of a file
//! Returns the offset of a file
virtual u32 getFileOffset(u32 index) const _IRR_OVERRIDE_;
//! Searches for a file or folder within the list, returns the index
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment