diff options
author | Zephyron <zephyron@citron-emu.org> | 2025-02-09 12:07:50 +1000 |
---|---|---|
committer | Zephyron <zephyron@citron-emu.org> | 2025-02-09 12:07:50 +1000 |
commit | d4ad55ed21047747698618e97dfa727d454c3c96 (patch) | |
tree | 6de6b4988781902e0fed09990d386842606e8041 /src/common | |
parent | 6e16a8db1c9711beee9eb5827eeeb854a44edd02 (diff) |
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
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/uuid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/uuid.h b/src/common/uuid.h index 042f00de9..f58ceee49 100644 --- a/src/common/uuid.h +++ b/src/common/uuid.h @@ -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'}, }; } |