diff --git a/include/rpxloader/rpxloader.h b/include/rpxloader/rpxloader.h index b586d64..cc9e1ab 100644 --- a/include/rpxloader/rpxloader.h +++ b/include/rpxloader/rpxloader.h @@ -63,7 +63,7 @@ RPXLoaderStatus RPXLoader_GetVersion(uint32_t *outVersion); * @param path: path to the .rpx/.wuhb that should be loaded. * @return RPX_LOADER_RESULT_SUCCESS: Loading of the next RPX will be redirected.
* RPX_LOADER_RESULT_LIB_UNINITIALIZED: Library was not initialized. Call RPXLoader_InitLibrary() before using this function.
- * RPX_LOADER_RESULT_UNSUPPORTED_COMMAND: Command not supported by the currently loaded RPXLoaderModule version.

+ * RPX_LOADER_RESULT_UNSUPPORTED_COMMAND: Command not supported by the currently loaded RPXLoaderModule version.
* RPX_LOADER_RESULT_INVALID_ARGUMENT: Given path was NULL
* RPX_LOADER_RESULT_UNKNOWN_ERROR: Unexpected error.
*/ diff --git a/source/rpxloader.cpp b/source/rpxloader.cpp index 4971c8a..a042d41 100644 --- a/source/rpxloader.cpp +++ b/source/rpxloader.cpp @@ -36,7 +36,7 @@ const char *RPXLoader_GetStatusStr(RPXLoaderStatus status) { case RPX_LOADER_RESULT_UNSUPPORTED_COMMAND: return "RPX_LOADER_RESULT_UNSUPPORTED_COMMAND"; } - return "MOCHA_RESULT_UNKNOWN_ERROR"; + return "RPX_LOADER_RESULT_UNKNOWN_ERROR"; } static RPXLoaderVersion rpxLoaderVersion = RPX_LOADER_MODULE_VERSION_ERROR;