- makefile:

- added PATTERNS and TRACKS for music
- audio and configuration windows fixed
- there might be some rudimentary music in there
This commit is contained in:
2026-03-03 23:36:51 +01:00
parent 77bd76f6f9
commit ecd094e2d7
6 changed files with 29 additions and 19 deletions

8
.vscode/tasks.json vendored
View File

@@ -11,17 +11,19 @@
{
"label": "Build & Run TIC80",
"type": "shell",
"command": "make build && tic80 --fs=. impostor.lua"
"command": "make build && tic80 --fs=. impostor.lua",
"problemMatcher": []
},
{
"label": "Export assets",
"type": "shell",
"command": "make export_assets"
"command": "make export_assets",
"problemMatcher": []
},
{
"label": "Make build",
"type": "shell",
"command": "make build"
},
}
]
}