diff options
| author | 2022-12-24 22:24:56 -0500 | |
|---|---|---|
| committer | 2023-01-01 16:43:58 -0500 | |
| commit | 4814d87385a3e06a70514be4ecb2739cba358bdf (patch) | |
| tree | c13a876c13fb53e8aceed2a6eaad925e1138f896 /src/video_core/macro | |
| parent | MacroHLE: Final cleanup and fixes. (diff) | |
| download | yuzu-4814d87385a3e06a70514be4ecb2739cba358bdf.tar.gz yuzu-4814d87385a3e06a70514be4ecb2739cba358bdf.tar.xz yuzu-4814d87385a3e06a70514be4ecb2739cba358bdf.zip | |
video_core: fix build
Diffstat (limited to 'src/video_core/macro')
| -rw-r--r-- | src/video_core/macro/macro_hle.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/video_core/macro/macro_hle.cpp b/src/video_core/macro/macro_hle.cpp index 3481fcd41..c08b4abb3 100644 --- a/src/video_core/macro/macro_hle.cpp +++ b/src/video_core/macro/macro_hle.cpp | |||
| @@ -410,7 +410,8 @@ HLEMacro::HLEMacro(Engines::Maxwell3D& maxwell3d_) : maxwell3d{maxwell3d_} { | |||
| 410 | builders.emplace(0x3F5E74B9C9A50164ULL, | 410 | builders.emplace(0x3F5E74B9C9A50164ULL, |
| 411 | std::function<std::unique_ptr<CachedMacro>(Engines::Maxwell3D&)>( | 411 | std::function<std::unique_ptr<CachedMacro>(Engines::Maxwell3D&)>( |
| 412 | [](Engines::Maxwell3D& maxwell3d__) -> std::unique_ptr<CachedMacro> { | 412 | [](Engines::Maxwell3D& maxwell3d__) -> std::unique_ptr<CachedMacro> { |
| 413 | return std::make_unique<HLE_MultiDrawIndexedIndirectCount>(maxwell3d__); | 413 | return std::make_unique<HLE_MultiDrawIndexedIndirectCount>( |
| 414 | maxwell3d__); | ||
| 414 | })); | 415 | })); |
| 415 | builders.emplace(0xEAD26C3E2109B06BULL, | 416 | builders.emplace(0xEAD26C3E2109B06BULL, |
| 416 | std::function<std::unique_ptr<CachedMacro>(Engines::Maxwell3D&)>( | 417 | std::function<std::unique_ptr<CachedMacro>(Engines::Maxwell3D&)>( |