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

@ -82,7 +82,7 @@ struct UUID {
*/
static constexpr UUID MakeDefault() {
return UUID{
{'y', 'u', 'z', 'u', ' ', 'D', 'e', 'f', 'a', 'u', 'l', 't', ' ', 'U', 'I', 'D'},
{'c', 'i', 't', 'r', ' ', 'D', 'e', 'f', 'a', 'u', 'l', 't', ' ', 'U', 'I', 'D'},
};
}