├── Bug Hunt.bin ├── Cover.png ├── README.md ├── Readme.txt ├── inc ├── bichos.h ├── captured.h ├── fmp.h ├── game.h ├── hotswap.h ├── hud.h ├── input.h ├── lengua.h ├── lightgun.h ├── main.h ├── musicvgm.h ├── save.h ├── scroll.h ├── segalogo.h ├── sfxpsg.h ├── spritedispatcher.h └── text.h ├── res ├── genres.rc ├── genres │ ├── fmp │ │ └── foreground.FMP │ └── gfx │ │ ├── background.1.pal │ │ ├── background.bmp │ │ ├── background.pal │ │ └── bigfont.png ├── musicvgm.h ├── musicvgm.res ├── rescomp.h ├── rescomp.res ├── rescomp │ ├── ay.wav │ ├── gfx │ │ ├── SPRpal.bmp │ │ ├── countdown_1.bmp │ │ ├── countdown_2.bmp │ │ ├── countdown_3.bmp │ │ ├── creditos.bmp │ │ ├── deleted.bmp │ │ ├── disclaimer.bmp │ │ ├── font_hud.bmp │ │ ├── font_score.bmp │ │ ├── game_over_scr_fg.bmp │ │ ├── logo_Sega.bmp │ │ ├── score_scr_fg.bmp │ │ ├── spr_crew.bmp │ │ ├── spr_cursor.bmp │ │ ├── spr_lengua.bmp │ │ ├── spr_selector.bmp │ │ ├── spr_shot.bmp │ │ ├── submit_scr_fg.bmp │ │ ├── sueloselva_scr_bg.bmp │ │ ├── title_scr_bg.bmp │ │ └── yes_no.bmp │ ├── music_vgm │ │ ├── music_maintheme.vgm │ │ └── music_sega_voice.vgm │ └── sfx_psg │ │ ├── sfxpsg_blow_whistle.h │ │ ├── sfxpsg_blow_whistle.vgm │ │ ├── sfxpsg_countdown.h │ │ ├── sfxpsg_countdown.vgm │ │ ├── sfxpsg_dead_shot.h │ │ ├── sfxpsg_dead_shot.vgm │ │ ├── sfxpsg_death.h │ │ ├── sfxpsg_death.vgm │ │ ├── sfxpsg_level.h │ │ ├── sfxpsg_level.vgm │ │ ├── sfxpsg_press_btn.h │ │ ├── sfxpsg_press_btn.vgm │ │ ├── sfxpsg_shot.h │ │ ├── sfxpsg_shot.vgm │ │ ├── sfxpsg_stuck.h │ │ ├── sfxpsg_stuck.vgm │ │ ├── sfxpsg_swallow.h │ │ ├── sfxpsg_swallow.vgm │ │ ├── sfxpsg_wrong_shot.h │ │ ├── sfxpsg_wrong_shot.vgm │ │ ├── vgm2psgfx.bat │ │ └── vgm2psgfx.exe └── sfxpsg.h └── src ├── bichos.c ├── boot ├── rom_head.c └── sega.s ├── captured.c ├── fmp.c ├── game.c ├── hotswap.c ├── hud.c ├── input.c ├── lengua.c ├── lightgun.c ├── main.c ├── musicvgm.c ├── save.c ├── scroll.c ├── segalogo.c ├── sfxpsg.c ├── spritedispatcher.c └── text.c /Bug Hunt.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/Bug Hunt.bin -------------------------------------------------------------------------------- /Cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/Cover.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/README.md -------------------------------------------------------------------------------- /Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/Readme.txt -------------------------------------------------------------------------------- /inc/bichos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/bichos.h -------------------------------------------------------------------------------- /inc/captured.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/captured.h -------------------------------------------------------------------------------- /inc/fmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/fmp.h -------------------------------------------------------------------------------- /inc/game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/game.h -------------------------------------------------------------------------------- /inc/hotswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/hotswap.h -------------------------------------------------------------------------------- /inc/hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/hud.h -------------------------------------------------------------------------------- /inc/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/input.h -------------------------------------------------------------------------------- /inc/lengua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/lengua.h -------------------------------------------------------------------------------- /inc/lightgun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/lightgun.h -------------------------------------------------------------------------------- /inc/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/main.h -------------------------------------------------------------------------------- /inc/musicvgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/musicvgm.h -------------------------------------------------------------------------------- /inc/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/save.h -------------------------------------------------------------------------------- /inc/scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/scroll.h -------------------------------------------------------------------------------- /inc/segalogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/segalogo.h -------------------------------------------------------------------------------- /inc/sfxpsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/sfxpsg.h -------------------------------------------------------------------------------- /inc/spritedispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/spritedispatcher.h -------------------------------------------------------------------------------- /inc/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/inc/text.h -------------------------------------------------------------------------------- /res/genres.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/genres.rc -------------------------------------------------------------------------------- /res/genres/fmp/foreground.FMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/genres/fmp/foreground.FMP -------------------------------------------------------------------------------- /res/genres/gfx/background.1.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/genres/gfx/background.1.pal -------------------------------------------------------------------------------- /res/genres/gfx/background.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/genres/gfx/background.bmp -------------------------------------------------------------------------------- /res/genres/gfx/background.pal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/genres/gfx/background.pal -------------------------------------------------------------------------------- /res/genres/gfx/bigfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/genres/gfx/bigfont.png -------------------------------------------------------------------------------- /res/musicvgm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/musicvgm.h -------------------------------------------------------------------------------- /res/musicvgm.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/musicvgm.res -------------------------------------------------------------------------------- /res/rescomp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp.h -------------------------------------------------------------------------------- /res/rescomp.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp.res -------------------------------------------------------------------------------- /res/rescomp/ay.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/ay.wav -------------------------------------------------------------------------------- /res/rescomp/gfx/SPRpal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/SPRpal.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/countdown_1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/countdown_1.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/countdown_2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/countdown_2.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/countdown_3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/countdown_3.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/creditos.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/creditos.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/deleted.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/deleted.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/disclaimer.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/disclaimer.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/font_hud.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/font_hud.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/font_score.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/font_score.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/game_over_scr_fg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/game_over_scr_fg.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/logo_Sega.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/logo_Sega.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/score_scr_fg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/score_scr_fg.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/spr_crew.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/spr_crew.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/spr_cursor.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/spr_cursor.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/spr_lengua.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/spr_lengua.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/spr_selector.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/spr_selector.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/spr_shot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/spr_shot.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/submit_scr_fg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/submit_scr_fg.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/sueloselva_scr_bg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/sueloselva_scr_bg.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/title_scr_bg.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/title_scr_bg.bmp -------------------------------------------------------------------------------- /res/rescomp/gfx/yes_no.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/gfx/yes_no.bmp -------------------------------------------------------------------------------- /res/rescomp/music_vgm/music_maintheme.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/music_vgm/music_maintheme.vgm -------------------------------------------------------------------------------- /res/rescomp/music_vgm/music_sega_voice.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/music_vgm/music_sega_voice.vgm -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_blow_whistle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_blow_whistle.h -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_blow_whistle.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_blow_whistle.vgm -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_countdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_countdown.h -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_countdown.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_countdown.vgm -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_dead_shot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_dead_shot.h -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_dead_shot.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_dead_shot.vgm -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_death.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_death.h -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_death.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_death.vgm -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_level.h -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_level.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_level.vgm -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_press_btn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_press_btn.h -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_press_btn.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_press_btn.vgm -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_shot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_shot.h -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_shot.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_shot.vgm -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_stuck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_stuck.h -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_stuck.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_stuck.vgm -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_swallow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_swallow.h -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_swallow.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_swallow.vgm -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_wrong_shot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_wrong_shot.h -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/sfxpsg_wrong_shot.vgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/sfxpsg_wrong_shot.vgm -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/vgm2psgfx.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/vgm2psgfx.bat -------------------------------------------------------------------------------- /res/rescomp/sfx_psg/vgm2psgfx.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/rescomp/sfx_psg/vgm2psgfx.exe -------------------------------------------------------------------------------- /res/sfxpsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/res/sfxpsg.h -------------------------------------------------------------------------------- /src/bichos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/bichos.c -------------------------------------------------------------------------------- /src/boot/rom_head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/boot/rom_head.c -------------------------------------------------------------------------------- /src/boot/sega.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/boot/sega.s -------------------------------------------------------------------------------- /src/captured.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/captured.c -------------------------------------------------------------------------------- /src/fmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/fmp.c -------------------------------------------------------------------------------- /src/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/game.c -------------------------------------------------------------------------------- /src/hotswap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/hotswap.c -------------------------------------------------------------------------------- /src/hud.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/hud.c -------------------------------------------------------------------------------- /src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/input.c -------------------------------------------------------------------------------- /src/lengua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/lengua.c -------------------------------------------------------------------------------- /src/lightgun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/lightgun.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/main.c -------------------------------------------------------------------------------- /src/musicvgm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/musicvgm.c -------------------------------------------------------------------------------- /src/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/save.c -------------------------------------------------------------------------------- /src/scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/scroll.c -------------------------------------------------------------------------------- /src/segalogo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/segalogo.c -------------------------------------------------------------------------------- /src/sfxpsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/sfxpsg.c -------------------------------------------------------------------------------- /src/spritedispatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/spritedispatcher.c -------------------------------------------------------------------------------- /src/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moon-watcher/BugHuntMD/HEAD/src/text.c --------------------------------------------------------------------------------