Skip to content

Commit

Permalink
1.7.1 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
BartmanAbyss committed Feb 10, 2023
1 parent ce0d0c5 commit 09aec8b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
All notable changes to the "amiga-debug" extension will be documented in this file.
See PR links for more information.

## 1.7.1
- FIX: 1.7.0 would not start debugging if launch.json was missing `emuargs` [#211](https://github.com/BartmanAbyss/vscode-amiga-debug/issues/211)

## 1.7.0
- CHG: update to [latest WinUAE (41010)](https://github.com/tonioni/WinUAE/commit/239062dc7c49838b41ac54e5901522eeb78f0ef0)
- FIX: Only write m68k settings for Amiga projects [PR#208](https://github.com/BartmanAbyss/vscode-amiga-debug/pull/208)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"repository": {
"url": "https://github.com/BartmanAbyss/vscode-amiga-debug"
},
"version": "1.7.0",
"version": "1.7.1",
"license": "GPL-3.0-or-later",
"engines": {
"vscode": "^1.46.0"
Expand Down
3 changes: 3 additions & 0 deletions src/amigaDebug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -473,6 +473,9 @@ export class AmigaDebugSession extends LoggingDebugSession {
? path.join(binPath, "winuae-gdb.exe")
: path.join(binPath, "fs-uae", "fs-uae");

if(args.emuargs === undefined)
args.emuargs = [];

const emuArgs = [
...(isWin
// all WinUAE options now in config file
Expand Down

0 comments on commit 09aec8b

Please sign in to comment.