Do not store ErrOut variable

This commit is contained in:
Jeremy Soller
2020-12-05 15:41:18 -07:00
parent f81f3474b3
commit 7b5e832086

View File

@@ -69,6 +69,7 @@ BOOLEAN starts_with(CHAR16 *string, CHAR16 *prefix) {
BOOLEAN store_variable(CHAR16 *VariableName) {
return (
!starts_with(VariableName, L"Con") &&
!starts_with(VariableName, L"ErrOut") &&
!starts_with(VariableName, L"SystemSleepCheckpoint")
);
}