mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-19 22:11:34 +00:00
Add const to read only function
This commit is contained in:
parent
7914618175
commit
c0c723bb1b
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ namespace ESM
|
||||||
// Counts how many records we have actually written.
|
// Counts how many records we have actually written.
|
||||||
// It is a good idea to compare this with the value you wrote into the header (setRecordCount)
|
// It is a good idea to compare this with the value you wrote into the header (setRecordCount)
|
||||||
// It should be the record count you set + 1 (1 additional record for the TES3 header)
|
// It should be the record count you set + 1 (1 additional record for the TES3 header)
|
||||||
int getRecordCount() { return mRecordCount; }
|
int getRecordCount() const { return mRecordCount; }
|
||||||
void setFormatVersion(FormatVersion value);
|
void setFormatVersion(FormatVersion value);
|
||||||
|
|
||||||
void clearMaster();
|
void clearMaster();
|
||||||
|
|
Loading…
Reference in a new issue