Skip to content

Commit 9a11b66

Browse files
committed
fix: switch to invalid cpu type
1 parent b0721be commit 9a11b66

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/EIDEProjectModules.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ export abstract class ArmBaseCompileConfigModel
559559
if (this.cpuTypeList.includes(model.data.cpuType)) { // found target cpu, update it
560560
this.data.cpuType = model.data.cpuType;
561561
} else { // not found, use cpuList[0]
562-
this.data.cpuType = this.cpuTypeList[0];
562+
this.data.cpuType = this.cpuTypeList[1];
563563
}
564564

565565
this.onPropertyChanged('cpuType');

0 commit comments

Comments
 (0)