summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/spl/module.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/spl/module.h')
-rw-r--r--src/core/hle/service/spl/module.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/spl/module.h b/src/core/hle/service/spl/module.h
index 48fda6099..afa1f0295 100644
--- a/src/core/hle/service/spl/module.h
+++ b/src/core/hle/service/spl/module.h
@@ -4,6 +4,7 @@
#pragma once
+#include <random>
#include "core/hle/service/service.h"
namespace Service::SPL {
@@ -19,6 +20,9 @@ public:
protected:
std::shared_ptr<Module> module;
+
+ private:
+ std::mt19937 rng;
};
};