GameBoy (Color) port of the GTA San Andreas arcade game Duality
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }