Compare commits

...

1 Commits

Author SHA1 Message Date
lizzie
aa62e1632d [macos] build patches for sequoia
Signed-off-by: lizzie <lizzie@eden-emu.dev>
2025-10-19 03:43:52 +00:00
2 changed files with 3 additions and 2 deletions

View File

@@ -6,6 +6,7 @@
#include <ctime>
#include <fstream>
#include <sstream>
#include <iomanip>
#include <fmt/chrono.h>

View File

@@ -1383,8 +1383,8 @@ void TextureCacheRuntime::CopyImage(Image& dst, Image& src,
}
#endif
auto oneCopy = VideoCommon::ImageCopy{
.src_offset = VideoCommon::Offset3D(0, 0, 0),
.dst_offset = VideoCommon::Offset3D(0, 0, 0),
.src_offset = VideoCommon::Offset3D{0, 0, 0},
.dst_offset = VideoCommon::Offset3D{0, 0, 0},
.extent = dst.info.size
};
return ReinterpretImage(dst, src, std::span{&oneCopy, 1});