From dc92a24e8016a5eb68f5f14cc821f2708ad00842 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Wed, 6 Mar 2024 12:04:04 -0800 Subject: [PATCH] fixup typo --- .../src/kaleidoscope/plugin/Escape-OneShot-Config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Kaleidoscope-Escape-OneShot/src/kaleidoscope/plugin/Escape-OneShot-Config.cpp b/plugins/Kaleidoscope-Escape-OneShot/src/kaleidoscope/plugin/Escape-OneShot-Config.cpp index fd5821b3a7..e72f943633 100644 --- a/plugins/Kaleidoscope-Escape-OneShot/src/kaleidoscope/plugin/Escape-OneShot-Config.cpp +++ b/plugins/Kaleidoscope-Escape-OneShot/src/kaleidoscope/plugin/Escape-OneShot-Config.cpp @@ -30,7 +30,7 @@ namespace kaleidoscope { namespace plugin { EventHandlerResult EscapeOneShotConfig::onSetup() { - bool success = ::EEPROMSettings.requestSliceAndLoadData(sizeof(::EscapeOneShot::settings_), &settings_base_, &::EscapeOneShot.settings_); + bool success = ::EEPROMSettings.requestSliceAndLoadData(sizeof(::EscapeOneShot.settings_), &settings_base_, &::EscapeOneShot.settings_); if (!success) { // If our slice is uninitialized, set sensible defaults. Runtime.storage().put(settings_base_, ::EscapeOneShot.settings_);