Преглед на файлове

Merge pull request #4368 from lioncash/macro

macro: Resolve missing parameter in doxygen comment
David преди 6 години
родител
ревизия
9cca0c2f83
променени са 1 файла, в които са добавени 2 реда и са изтрити 1 реда
  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;
     /**
      * 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 method     The method to execute
      */
     virtual void Execute(const std::vector<u32>& parameters, u32 method) = 0;
 };