File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -118,22 +118,22 @@ static std::string GenerateRuntimeText(
118118 const uint8_t bitness,
119119 const std::optional<Runtime>& runtime) {
120120 if (!runtime) {
121- return std::format (" Active {}-bit runtime: NONE\n " , bitness);
121+ return std::format (" β Active {}-bit runtime: NONE\n " , bitness);
122122 }
123123
124124 if (!runtime->mName ) {
125125 if (runtime->mName .error () != Runtime::ManifestError::FieldNotPresent) {
126126 return std::format (
127- " Active {}-bit runtime: CORRUPTED - {}\n " ,
127+ " π¨ Active {}-bit runtime: CORRUPTED - {}\n " ,
128128 bitness,
129129 runtime->mPath .string ());
130130 }
131131 return std::format (
132- " Active {}-bit runtime: {}\n " , bitness, runtime->mPath .string ());
132+ " β
Active {}-bit runtime: {}\n " , bitness, runtime->mPath .string ());
133133 }
134134
135135 return std::format (
136- " Active {}-bit runtime: \" {}\" - {}\n " ,
136+ " β
Active {}-bit runtime: \" {}\" - {}\n " ,
137137 bitness,
138138 runtime->mName .value (),
139139 runtime->mPath .string ());
You canβt perform that action at this time.
0 commit comments