Skip to content

Commit e2fbcff

Browse files
committed
Fixed Jump to Tag and Offset warning message
1 parent cb327dc commit e2fbcff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/jumpToTagAndOffset.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ export async function jumpToTagAndOffset(): Promise<void> {
88
}
99
const nameMatch = file.name.match(/(.*)\.(int|mac)$/i);
1010
if (!nameMatch) {
11-
vscode.window.showWarningMessage("Jump to Tag and Offset only supports .inc and .mac routines.");
11+
vscode.window.showWarningMessage("Jump to Tag and Offset only supports .int and .mac routines.");
1212
return;
1313
}
1414
const document = vscode.window.activeTextEditor?.document;

0 commit comments

Comments
 (0)