Replace yuzu identifiers with citron

Update magic numbers and default identifiers across codebase:
- UUID default value
- Thread magic number
- Amiibo name
- Vulkan cache magic number
- Shader cache magic number
This commit is contained in:
Zephyron 2025-02-09 12:07:50 +10:00
parent 6e16a8db1c
commit d4ad55ed21
No known key found for this signature in database
5 changed files with 5 additions and 5 deletions

View file

@ -54,7 +54,7 @@ using VideoCommon::GenericEnvironment;
using VideoCommon::GraphicsEnvironment;
constexpr u32 CACHE_VERSION = 11;
constexpr std::array<char, 8> VULKAN_CACHE_MAGIC_NUMBER{'y', 'u', 'z', 'u', 'v', 'k', 'c', 'h'};
constexpr std::array<char, 8> VULKAN_CACHE_MAGIC_NUMBER{'c', 'i', 't', 'r', 'v', 'k', 'c', 'h'};
template <typename Container>
auto MakeSpan(Container& container) {