diff options
author | Lioncash <mathew1800@gmail.com> | 2019-05-14 19:43:23 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-05-14 19:43:28 +0200 |
commit | b01cce716e406bf8eb4d322344366e68a7250d6a (patch) | |
tree | 9f9c6195dc623d624849b1da3402671115d9bae6 /src | |
parent | video_core/engines/engine_upload: Default destructor in the cpp file (diff) | |
download | yuzu-b01cce716e406bf8eb4d322344366e68a7250d6a.tar yuzu-b01cce716e406bf8eb4d322344366e68a7250d6a.tar.gz yuzu-b01cce716e406bf8eb4d322344366e68a7250d6a.tar.bz2 yuzu-b01cce716e406bf8eb4d322344366e68a7250d6a.tar.lz yuzu-b01cce716e406bf8eb4d322344366e68a7250d6a.tar.xz yuzu-b01cce716e406bf8eb4d322344366e68a7250d6a.tar.zst yuzu-b01cce716e406bf8eb4d322344366e68a7250d6a.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/engines/engine_upload.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/engine_upload.cpp b/src/video_core/engines/engine_upload.cpp index 1aaec1964..082a40cd9 100644 --- a/src/video_core/engines/engine_upload.cpp +++ b/src/video_core/engines/engine_upload.cpp @@ -12,7 +12,7 @@ namespace Tegra::Engines::Upload { State::State(MemoryManager& memory_manager, Registers& regs) - : memory_manager(memory_manager), regs(regs) {} + : regs{regs}, memory_manager{memory_manager} {} State::~State() = default; |