From aedf419c575629868940bd0e138492056ab5e1d4 Mon Sep 17 00:00:00 2001 From: Dan Date: Mon, 15 Jan 2024 03:34:39 -0800 Subject: [PATCH] fix macros --- VortexEngine/src/Menus/MenuList/EditorConnection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VortexEngine/src/Menus/MenuList/EditorConnection.cpp b/VortexEngine/src/Menus/MenuList/EditorConnection.cpp index 7b0268194d..5bc87c50a9 100644 --- a/VortexEngine/src/Menus/MenuList/EditorConnection.cpp +++ b/VortexEngine/src/Menus/MenuList/EditorConnection.cpp @@ -166,7 +166,7 @@ Menu::MenuAction EditorConnection::run() m_state = STATE_IDLE; break; case STATE_TRANSMIT_MODE_VL: -#if ENABLE_VL_SENDER == 1 +#if VL_ENABLE_SENDER == 1 // if still sending and the send command indicated more data if (VLSender::isSending() && VLSender::send()) { // then continue sending @@ -188,7 +188,7 @@ Menu::MenuAction EditorConnection::run() void EditorConnection::sendCurModeVL() { -#if ENABLE_VL_SENDER == 1 +#if VL_ENABLE_SENDER == 1 // immediately load the mode and send it now VLSender::loadMode(&m_previewMode); VLSender::send();