Skip to content

Commit c841201

Browse files
committed
clang bro
1 parent b70450a commit c841201

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/video_core/renderer_vulkan/vk_pipeline_cache.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ const ComputePipeline* PipelineCache::GetComputePipeline() {
7070
// 0xce54e4ddULL - Rock Band 4 V_MOVRELS_B32 - DO NOT USE, makes notes invisible
7171

7272
bool ShouldSkipShader(u64 shader_hash, const char* shader_type) {
73-
static constexpr std::array<u64, 5> skip_hashes = {0x3f84ec55ULL, 0xc7f34c4fULL, 0x28080e22ULL
74-
0x13a1d5fcULL};
73+
static constexpr std::array<u64, 5> skip_hashes = {0x3f84ec55ULL, 0xc7f34c4fULL,
74+
0x28080e22ULL, 0x13a1d5fcULL};
7575
if (std::ranges::contains(skip_hashes, shader_hash)) {
7676
LOG_WARNING(Render_Vulkan, "Skipped {} shader hash {:#x}.", shader_type, shader_hash);
7777
return true;

0 commit comments

Comments
 (0)