Add LogToConsole experiment flag

This commit is contained in:
scawful
2024-01-22 21:17:41 -05:00
parent 499818836a
commit 9b3977191d
3 changed files with 17 additions and 9 deletions

View File

@@ -6,6 +6,7 @@
#include <chrono>
#include <cstdint>
#include <functional>
#include <iostream>
#include <memory>
#include <stack>
#include <string>
@@ -54,6 +55,9 @@ class ExperimentFlags {
// Save dungeon map edits to the ROM.
bool kSaveDungeonMaps = false;
// Log to the console.
bool kLogToConsole = false;
};
ExperimentFlags() = default;