renderer_vulkan: Fix incorrect MaxTexelBufferElements return type (#1563)

This commit is contained in:
OpenSauce 2026-01-02 23:05:52 +00:00 committed by GitHub
parent 88d1523b3b
commit 8c53dcef31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;
}