diff --git a/src/common/communication.h b/src/common/communication.h index a5f27c9f..89f5ddaa 100644 --- a/src/common/communication.h +++ b/src/common/communication.h @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include #include @@ -214,7 +214,7 @@ void serialize(S& s, AEffect& plugin) { s.container1b(plugin.unknown1); } -// I don't want to editor 'include/vestige/aeffect.h`. That's why this type +// I don't want to editor 'include/vestige/aeffectx.h`. That's why this type // trait and the above serialization function are here.` Clang complains that // `buffer` should be qualified (and only in some cases), so `buffer_t` it is. template diff --git a/src/common/logging.cpp b/src/common/logging.cpp index 2c69f034..728a75cb 100644 --- a/src/common/logging.cpp +++ b/src/common/logging.cpp @@ -11,7 +11,7 @@ #endif #include -#include "vestige/aeffect.h" +#include "vestige/aeffectx.h" /** * The environment variable indicating whether to log to a file. Will log to @@ -176,13 +176,13 @@ void Logger::log_event_response(bool is_dispatch, /** * Convert an event opcode to a human readable string for debugging purposes. - * See `src/include/vestige/aeffect.h` for a complete list of these opcodes. + * See `src/include/vestige/aeffectx.h` for a complete list of these opcodes. * * @param is_dispatch Whether to use opcodes for the `dispatch` function. Will * use the names from the host callback function if set to false. * @param opcode The opcode of the event. * - * @return Either the name from `aeffect.h`, or a nullopt if it was not listed + * @return Either the name from `aeffectx.h`, or a nullopt if it was not listed * there. */ std::optional opcode_to_string(bool is_dispatch, int opcode) { diff --git a/src/include/vestige/aeffect.h b/src/include/vestige/aeffectx.h similarity index 100% rename from src/include/vestige/aeffect.h rename to src/include/vestige/aeffectx.h diff --git a/src/plugin/host-bridge.h b/src/plugin/host-bridge.h index 387975bc..c7acd0ab 100644 --- a/src/plugin/host-bridge.h +++ b/src/plugin/host-bridge.h @@ -16,7 +16,7 @@ #pragma once -#include +#include #include #include diff --git a/src/plugin/plugin.cpp b/src/plugin/plugin.cpp index b6f7c97b..09ea34af 100644 --- a/src/plugin/plugin.cpp +++ b/src/plugin/plugin.cpp @@ -14,7 +14,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -#include +#include #include #include diff --git a/src/wine-host/plugin-bridge.h b/src/wine-host/plugin-bridge.h index 7f39176f..919ce7e4 100644 --- a/src/wine-host/plugin-bridge.h +++ b/src/wine-host/plugin-bridge.h @@ -25,7 +25,7 @@ #define NOMCX #define NOIMM #define WIN32_LEAN_AND_MEAN -#include +#include #include #include