From 211bf79b9af536891da559d85924122a56a722ad Mon Sep 17 00:00:00 2001 From: Jeffrey Crowell Date: Mon, 4 Jul 2022 22:34:51 -0400 Subject: [PATCH] doesn't need to be volatile --- ZAPDTR/ZAPD/ZResource.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ZAPDTR/ZAPD/ZResource.cpp b/ZAPDTR/ZAPD/ZResource.cpp index b16444499b..ebd7436532 100644 --- a/ZAPDTR/ZAPD/ZResource.cpp +++ b/ZAPDTR/ZAPD/ZResource.cpp @@ -349,7 +349,7 @@ std::string ZResource::GetSourceOutputHeader([[maybe_unused]] const std::string& str += StringHelper::Sprintf("#define d%s \"__OTR__%s/%s\"", name.c_str(), outName.c_str(), nameStr.c_str()); if (myset.find(name) == myset.end()) { - str += StringHelper::Sprintf("\nstatic volatile const char %s[] __attribute__((aligned (2))) = d%s;", name.c_str(), name.c_str()); + str += StringHelper::Sprintf("\nstatic const char %s[] __attribute__((aligned (2))) = d%s;", name.c_str(), name.c_str()); myset.insert(name); }