diff options
Diffstat (limited to 'src/lib/util/corefile.cpp')
-rw-r--r-- | src/lib/util/corefile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/util/corefile.cpp b/src/lib/util/corefile.cpp index e3d34ec3738..09d99c2072b 100644 --- a/src/lib/util/corefile.cpp +++ b/src/lib/util/corefile.cpp @@ -541,7 +541,7 @@ char *core_text_file::gets(char *s, int n) } } - // if we put nothing in, return NULL + // if we put nothing in, return nullptr if (cur == s) return nullptr; @@ -734,7 +734,7 @@ core_osd_file::~core_osd_file() { // close files and free memory if (m_zdata) - compress(FCOMPRESS_NONE); + core_osd_file::compress(FCOMPRESS_NONE); } |