Parcourir la source

macro: Resolve missing parameter in doxygen comment

Resolves a -Wdocumentation warning.
Lioncash il y a 6 ans
Parent
commit
502dbfb9eb
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  1. 2 1
      src/video_core/macro/macro.h

+ 2 - 1
src/video_core/macro/macro.h

@@ -103,8 +103,9 @@ public:
     virtual ~CachedMacro() = default;
     virtual ~CachedMacro() = default;
     /**
     /**
      * Executes the macro code with the specified input parameters.
      * Executes the macro code with the specified input parameters.
-     * @param code The macro byte code to execute
+     *
      * @param parameters The parameters of the macro
      * @param parameters The parameters of the macro
+     * @param method     The method to execute
      */
      */
     virtual void Execute(const std::vector<u32>& parameters, u32 method) = 0;
     virtual void Execute(const std::vector<u32>& parameters, u32 method) = 0;
 };
 };