Remove @ from the device names
This commit is contained in:
@@ -39,7 +39,7 @@ function correctDeviceName(name) {
|
||||
if (name.startsWith("Radeon")) {
|
||||
return "AMD " + name;
|
||||
}
|
||||
return name;
|
||||
return name.replace(/( @.*)/, "");
|
||||
}
|
||||
|
||||
function strcmp(a, b) {
|
||||
|
Reference in New Issue
Block a user