diff options
-rw-r--r-- | PC/layout/support/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/layout/support/constants.py b/PC/layout/support/constants.py index a864763..6cf0fe1 100644 --- a/PC/layout/support/constants.py +++ b/PC/layout/support/constants.py @@ -20,7 +20,7 @@ def _unpack_hexversion(): def _get_suffix(field4): - name = {0xA0: "a", 0xB0: "b", 0xC0: "c"}.get(field4 & 0xF0, "") + name = {0xA0: "a", 0xB0: "b", 0xC0: "rc"}.get(field4 & 0xF0, "") if name: serial = field4 & 0x0F return f"{name}{serial}" |