renderer_vulkan: Fix incorrect MaxTexelBufferElements return type (#1563)

This commit is contained in:
OpenSauce 2026-01-02 23:05:52 +00:00 committed by OpenSauce04
parent a63d6a3834
commit 7a436ca7e8

View File

@ -1,4 +1,4 @@
// Copyright 2022 Citra Emulator Project
// Copyright Citra Emulator Project / Azahar Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
@ -229,7 +229,7 @@ public:
}
/// Returns the maximum supported elements in a texel buffer
u32 MaxTexelBufferElements() const {
u64 MaxTexelBufferElements() const {
return properties.limits.maxTexelBufferElements;
}