From 056a3add8f21698fd55980bbc16ed81b0e12f1a8 Mon Sep 17 00:00:00 2001 From: sp00n Date: Fri, 11 Apr 2025 01:04:33 +0200 Subject: [PATCH] "Bitmask" vs. "BitMask" --- ryzen-smu-cli/Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ryzen-smu-cli/Program.cs b/ryzen-smu-cli/Program.cs index ed0095c..c5d5e86 100644 --- a/ryzen-smu-cli/Program.cs +++ b/ryzen-smu-cli/Program.cs @@ -84,9 +84,9 @@ namespace ryzen_smu_cli { int physicalCore = mappedCores[logicalCore]; int ccdIndex = (int)Math.Floor((double)(physicalCore / 8)); - int ccdBitmask = ccdIndex << 8; + int ccdBitMask = ccdIndex << 8; int coreNumOnCcd = physicalCore % 8; - uint coreBitMask = (uint)((ccdBitmask | (coreNumOnCcd & 0xF)) << 20); + uint coreBitMask = (uint)((ccdBitMask | (coreNumOnCcd & 0xF)) << 20); try {