Macro editor (#87)

This commit is contained in:
Mikko Lakomaa
2016-09-13 22:22:11 +03:00
committed by József Farkas
parent 8a76da8df5
commit fbb4a1cc49
61 changed files with 1638 additions and 429 deletions

View File

@@ -86,7 +86,8 @@ export class MapperService {
undefined, // 79 Right arrow
undefined, // 80 Left arrow
undefined, // 81 Down arrow
undefined // 82 Up arrow
undefined, // 82 Up arrow
['Num Lock'] // 83
];
private scanCodeFileName: Map<number, string>;
@@ -99,7 +100,7 @@ export class MapperService {
}
public scanCodeToText(scanCode: number): string[] {
return this.scanCodeTextMap[scanCode] || [ 'Unkown' ];
return this.scanCodeTextMap[scanCode] || [ 'Unknown' ];
}
public scanCodeToSvgImagePath(scanCode: number): string {