GameBoy (Color) port of the GTA San Andreas arcade game Duality
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

launch.json 404B

123456789101112131415
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "type": "emulicious",
  6. "request": "launch",
  7. "name": "Emulicious Duality",
  8. "program": "/home/thomas/Projekte/gb/duality/build/duality.gb",
  9. "args": [],
  10. "cwd": "${workspaceFolder}",
  11. "additionalSrcFolders": "/home/thomas/Projekte/gb/duality/src",
  12. "postRestartCommands": ["break main", "continue"]
  13. }
  14. ]
  15. }