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

@ -25,7 +25,7 @@
namespace VideoCommon {
constexpr std::array<char, 8> MAGIC_NUMBER{'y', 'u', 'z', 'u', 'c', 'a', 'c', 'h'};
constexpr std::array<char, 8> MAGIC_NUMBER{'c', 'i', 't', 'r', 'c', 'a', 'c', 'h'};
constexpr size_t INST_SIZE = sizeof(u64);