mirror of https://github.com/OpenMW/openmw.git
Store default settings values
parent
6936c3a1c8
commit
8e487c283c
@ -1,12 +1,24 @@
|
||||
#include "values.hpp"
|
||||
|
||||
#include <stdexcept>
|
||||
|
||||
namespace Settings
|
||||
{
|
||||
Values* Values::sValues = nullptr;
|
||||
|
||||
void Values::init()
|
||||
void Values::initDefaults()
|
||||
{
|
||||
if (Values::sValues != nullptr)
|
||||
throw std::logic_error("Default settings already initialized");
|
||||
static Values values;
|
||||
Values::sValues = &values;
|
||||
}
|
||||
|
||||
void Values::init()
|
||||
{
|
||||
if (Values::sValues == nullptr)
|
||||
throw std::logic_error("Default settings are not initialized");
|
||||
static Values values(std::move(*Values::sValues));
|
||||
Values::sValues = &values;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue