Fix errors

This commit is contained in:
Alexander Batalov 2023-05-30 12:32:09 +03:00
parent bd70fc2322
commit 1d3b2c08a8
2 changed files with 3 additions and 1 deletions

View File

@ -15,7 +15,7 @@ static constexpr size_t kFileNameMaxSize = 63;
static constexpr size_t kSectionMaxSize = 32;
/// Special .ini file names which are accessed without adding base path.
static constexpr char* kSystemConfigFileNames[] = {
static constexpr const char* kSystemConfigFileNames[] = {
"ddraw.ini",
"f2_res.ini",
};

View File

@ -1,6 +1,8 @@
#ifndef FALLOUT_SFALL_INI_H_
#define FALLOUT_SFALL_INI_H_
#include <cstddef>
namespace fallout {
/// Sets base directory to lookup .ini files.