From 0ebcd9a178314db70f540dce22809b07adcfd1a4 Mon Sep 17 00:00:00 2001 From: scawful Date: Wed, 13 Nov 2024 09:30:49 -0500 Subject: [PATCH] Add kSaveGraphicsSheet flag to ExperimentFlags for graphics sheet saving --- src/app/core/common.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app/core/common.h b/src/app/core/common.h index 25bf722c..e58e3d21 100644 --- a/src/app/core/common.h +++ b/src/app/core/common.h @@ -67,6 +67,9 @@ class ExperimentFlags { // Save dungeon map edits to the Rom. bool kSaveDungeonMaps = false; + // Save graphics sheet to the Rom. + bool kSaveGraphicsSheet = false; + // Log to the console. bool kLogToConsole = false;