├── .editorconfig ├── .github └── workflows │ └── create-release.yml ├── .gitignore ├── LICENSE ├── Makefile ├── Makefile.targets ├── README.md ├── assets ├── 2bitpxlr.png └── pxlr.sav ├── include ├── analysis.h ├── bankedData.h ├── bleep.h ├── branch.h ├── camera.h ├── debug.h ├── defines.h ├── dialog.h ├── expose.h ├── flasher.h ├── gallery.h ├── gbcamera.h ├── globals.h ├── imageIndexing.h ├── imageInfo.h ├── images.h ├── joypad.h ├── mainLoop.h ├── mainMenu.h ├── menus │ ├── imageMenuItems.h │ ├── mainMenuItems.h │ ├── shootingAssistedMenuItems.h │ └── shootingManualMenuItems.h ├── modeShootingAssisted.h ├── modeShootingBurst.h ├── modeShootingManual.h ├── overlays │ ├── overlayDefs.h │ └── overlays.h ├── printCmd.h ├── remote.h ├── saveImage.h ├── splash.h ├── systemdetect.h ├── typedefs │ ├── AssistedOption.h │ ├── Histogram.h │ ├── Image.h │ ├── MenuItem.h │ ├── MenuOption.h │ └── Overlay.h ├── utils.h ├── values.h ├── valuesAssisted.h └── valuesDefs.h ├── res ├── font.c ├── font.h ├── gfx │ ├── gb │ │ └── backgrounds │ │ │ ├── frame_pxlr.png │ │ │ ├── frame_pxlr.png.meta │ │ │ ├── logo.png │ │ │ ├── logo.png.meta │ │ │ ├── wild_bottom.png │ │ │ ├── wild_bottom.png.meta │ │ │ ├── wild_center.png │ │ │ ├── wild_center.png.meta │ │ │ ├── wild_top.png │ │ │ └── wild_top.png.meta │ └── gbc │ │ └── backgrounds │ │ ├── frame_pxlr.png │ │ ├── frame_pxlr.png.meta │ │ ├── logo.png │ │ ├── logo.png.meta │ │ ├── wild_bottom.png │ │ ├── wild_bottom.png.meta │ │ ├── wild_center.png │ │ ├── wild_center.png.meta │ │ ├── wild_top.png │ │ └── wild_top.png.meta ├── maps.c ├── maps.h ├── nope.c ├── nope.h ├── tiles.c └── tiles.h ├── src ├── analysis.c ├── bankedData.c ├── bleep.c ├── camera.c ├── debug.c ├── dialog.c ├── expose.c ├── flasher.c ├── gallery.c ├── globals.c ├── imageIndexing.c ├── imageInfo.c ├── images.c ├── joypad.c ├── main.c ├── mainLoop.c ├── mainMenu.c ├── menus │ ├── imageMenuItems.c │ ├── mainMenuItems.c │ ├── shootingAssistedMenuItems.c │ └── shootingManualMenuItems.c ├── modeShootingAssisted.c ├── modeShootingBurst.c ├── modeShootingManual.c ├── overlays │ ├── overlayDefs.c │ └── overlays.c ├── printCmd.c ├── remote.c ├── saveImage.c ├── sm83 │ └── flasher_s.s ├── splash.c ├── systemdetect.c ├── utils.c ├── values.c └── valuesAssisted.c ├── temp └── gbdk-2020-Linux-x64.tar.gz ├── utils ├── dump2vgm.py ├── fxhammer2data.py ├── romusage.py ├── vgm2data.py └── wav2data.py └── version /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/create-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/.github/workflows/create-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/Makefile.targets -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/README.md -------------------------------------------------------------------------------- /assets/2bitpxlr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/assets/2bitpxlr.png -------------------------------------------------------------------------------- /assets/pxlr.sav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/assets/pxlr.sav -------------------------------------------------------------------------------- /include/analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/analysis.h -------------------------------------------------------------------------------- /include/bankedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/bankedData.h -------------------------------------------------------------------------------- /include/bleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/bleep.h -------------------------------------------------------------------------------- /include/branch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/branch.h -------------------------------------------------------------------------------- /include/camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/camera.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/defines.h -------------------------------------------------------------------------------- /include/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/dialog.h -------------------------------------------------------------------------------- /include/expose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/expose.h -------------------------------------------------------------------------------- /include/flasher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/flasher.h -------------------------------------------------------------------------------- /include/gallery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/gallery.h -------------------------------------------------------------------------------- /include/gbcamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/gbcamera.h -------------------------------------------------------------------------------- /include/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/globals.h -------------------------------------------------------------------------------- /include/imageIndexing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/imageIndexing.h -------------------------------------------------------------------------------- /include/imageInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/imageInfo.h -------------------------------------------------------------------------------- /include/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/images.h -------------------------------------------------------------------------------- /include/joypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/joypad.h -------------------------------------------------------------------------------- /include/mainLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/mainLoop.h -------------------------------------------------------------------------------- /include/mainMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/mainMenu.h -------------------------------------------------------------------------------- /include/menus/imageMenuItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/menus/imageMenuItems.h -------------------------------------------------------------------------------- /include/menus/mainMenuItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/menus/mainMenuItems.h -------------------------------------------------------------------------------- /include/menus/shootingAssistedMenuItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/menus/shootingAssistedMenuItems.h -------------------------------------------------------------------------------- /include/menus/shootingManualMenuItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/menus/shootingManualMenuItems.h -------------------------------------------------------------------------------- /include/modeShootingAssisted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/modeShootingAssisted.h -------------------------------------------------------------------------------- /include/modeShootingBurst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/modeShootingBurst.h -------------------------------------------------------------------------------- /include/modeShootingManual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/modeShootingManual.h -------------------------------------------------------------------------------- /include/overlays/overlayDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/overlays/overlayDefs.h -------------------------------------------------------------------------------- /include/overlays/overlays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/overlays/overlays.h -------------------------------------------------------------------------------- /include/printCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/printCmd.h -------------------------------------------------------------------------------- /include/remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/remote.h -------------------------------------------------------------------------------- /include/saveImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/saveImage.h -------------------------------------------------------------------------------- /include/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/splash.h -------------------------------------------------------------------------------- /include/systemdetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/systemdetect.h -------------------------------------------------------------------------------- /include/typedefs/AssistedOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/typedefs/AssistedOption.h -------------------------------------------------------------------------------- /include/typedefs/Histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/typedefs/Histogram.h -------------------------------------------------------------------------------- /include/typedefs/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/typedefs/Image.h -------------------------------------------------------------------------------- /include/typedefs/MenuItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/typedefs/MenuItem.h -------------------------------------------------------------------------------- /include/typedefs/MenuOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/typedefs/MenuOption.h -------------------------------------------------------------------------------- /include/typedefs/Overlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/typedefs/Overlay.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/utils.h -------------------------------------------------------------------------------- /include/values.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/values.h -------------------------------------------------------------------------------- /include/valuesAssisted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/valuesAssisted.h -------------------------------------------------------------------------------- /include/valuesDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/include/valuesDefs.h -------------------------------------------------------------------------------- /res/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/font.c -------------------------------------------------------------------------------- /res/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/font.h -------------------------------------------------------------------------------- /res/gfx/gb/backgrounds/frame_pxlr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/gfx/gb/backgrounds/frame_pxlr.png -------------------------------------------------------------------------------- /res/gfx/gb/backgrounds/frame_pxlr.png.meta: -------------------------------------------------------------------------------- 1 | -noflip -------------------------------------------------------------------------------- /res/gfx/gb/backgrounds/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/gfx/gb/backgrounds/logo.png -------------------------------------------------------------------------------- /res/gfx/gb/backgrounds/logo.png.meta: -------------------------------------------------------------------------------- 1 | -noflip -------------------------------------------------------------------------------- /res/gfx/gb/backgrounds/wild_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/gfx/gb/backgrounds/wild_bottom.png -------------------------------------------------------------------------------- /res/gfx/gb/backgrounds/wild_bottom.png.meta: -------------------------------------------------------------------------------- 1 | -noflip -------------------------------------------------------------------------------- /res/gfx/gb/backgrounds/wild_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/gfx/gb/backgrounds/wild_center.png -------------------------------------------------------------------------------- /res/gfx/gb/backgrounds/wild_center.png.meta: -------------------------------------------------------------------------------- 1 | -noflip -------------------------------------------------------------------------------- /res/gfx/gb/backgrounds/wild_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/gfx/gb/backgrounds/wild_top.png -------------------------------------------------------------------------------- /res/gfx/gb/backgrounds/wild_top.png.meta: -------------------------------------------------------------------------------- 1 | -noflip -------------------------------------------------------------------------------- /res/gfx/gbc/backgrounds/frame_pxlr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/gfx/gbc/backgrounds/frame_pxlr.png -------------------------------------------------------------------------------- /res/gfx/gbc/backgrounds/frame_pxlr.png.meta: -------------------------------------------------------------------------------- 1 | -noflip -------------------------------------------------------------------------------- /res/gfx/gbc/backgrounds/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/gfx/gbc/backgrounds/logo.png -------------------------------------------------------------------------------- /res/gfx/gbc/backgrounds/logo.png.meta: -------------------------------------------------------------------------------- 1 | -noflip -------------------------------------------------------------------------------- /res/gfx/gbc/backgrounds/wild_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/gfx/gbc/backgrounds/wild_bottom.png -------------------------------------------------------------------------------- /res/gfx/gbc/backgrounds/wild_bottom.png.meta: -------------------------------------------------------------------------------- 1 | -noflip -------------------------------------------------------------------------------- /res/gfx/gbc/backgrounds/wild_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/gfx/gbc/backgrounds/wild_center.png -------------------------------------------------------------------------------- /res/gfx/gbc/backgrounds/wild_center.png.meta: -------------------------------------------------------------------------------- 1 | -noflip -------------------------------------------------------------------------------- /res/gfx/gbc/backgrounds/wild_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/gfx/gbc/backgrounds/wild_top.png -------------------------------------------------------------------------------- /res/gfx/gbc/backgrounds/wild_top.png.meta: -------------------------------------------------------------------------------- 1 | -noflip -------------------------------------------------------------------------------- /res/maps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/maps.c -------------------------------------------------------------------------------- /res/maps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/maps.h -------------------------------------------------------------------------------- /res/nope.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/nope.c -------------------------------------------------------------------------------- /res/nope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/nope.h -------------------------------------------------------------------------------- /res/tiles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/tiles.c -------------------------------------------------------------------------------- /res/tiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/res/tiles.h -------------------------------------------------------------------------------- /src/analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/analysis.c -------------------------------------------------------------------------------- /src/bankedData.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/bankedData.c -------------------------------------------------------------------------------- /src/bleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/bleep.c -------------------------------------------------------------------------------- /src/camera.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/camera.c -------------------------------------------------------------------------------- /src/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/debug.c -------------------------------------------------------------------------------- /src/dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/dialog.c -------------------------------------------------------------------------------- /src/expose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/expose.c -------------------------------------------------------------------------------- /src/flasher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/flasher.c -------------------------------------------------------------------------------- /src/gallery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/gallery.c -------------------------------------------------------------------------------- /src/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/globals.c -------------------------------------------------------------------------------- /src/imageIndexing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/imageIndexing.c -------------------------------------------------------------------------------- /src/imageInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/imageInfo.c -------------------------------------------------------------------------------- /src/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/images.c -------------------------------------------------------------------------------- /src/joypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/joypad.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/main.c -------------------------------------------------------------------------------- /src/mainLoop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/mainLoop.c -------------------------------------------------------------------------------- /src/mainMenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/mainMenu.c -------------------------------------------------------------------------------- /src/menus/imageMenuItems.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/menus/imageMenuItems.c -------------------------------------------------------------------------------- /src/menus/mainMenuItems.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/menus/mainMenuItems.c -------------------------------------------------------------------------------- /src/menus/shootingAssistedMenuItems.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/menus/shootingAssistedMenuItems.c -------------------------------------------------------------------------------- /src/menus/shootingManualMenuItems.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/menus/shootingManualMenuItems.c -------------------------------------------------------------------------------- /src/modeShootingAssisted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/modeShootingAssisted.c -------------------------------------------------------------------------------- /src/modeShootingBurst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/modeShootingBurst.c -------------------------------------------------------------------------------- /src/modeShootingManual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/modeShootingManual.c -------------------------------------------------------------------------------- /src/overlays/overlayDefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/overlays/overlayDefs.c -------------------------------------------------------------------------------- /src/overlays/overlays.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/overlays/overlays.c -------------------------------------------------------------------------------- /src/printCmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/printCmd.c -------------------------------------------------------------------------------- /src/remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/remote.c -------------------------------------------------------------------------------- /src/saveImage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/saveImage.c -------------------------------------------------------------------------------- /src/sm83/flasher_s.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/sm83/flasher_s.s -------------------------------------------------------------------------------- /src/splash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/splash.c -------------------------------------------------------------------------------- /src/systemdetect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/systemdetect.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/values.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/values.c -------------------------------------------------------------------------------- /src/valuesAssisted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/src/valuesAssisted.c -------------------------------------------------------------------------------- /temp/gbdk-2020-Linux-x64.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/temp/gbdk-2020-Linux-x64.tar.gz -------------------------------------------------------------------------------- /utils/dump2vgm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/utils/dump2vgm.py -------------------------------------------------------------------------------- /utils/fxhammer2data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/utils/fxhammer2data.py -------------------------------------------------------------------------------- /utils/romusage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/utils/romusage.py -------------------------------------------------------------------------------- /utils/vgm2data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/utils/vgm2data.py -------------------------------------------------------------------------------- /utils/wav2data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HerrZatacke/2bit-pxlr-studio/HEAD/utils/wav2data.py -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 0.12.1 2 | --------------------------------------------------------------------------------