├── LICENSE ├── makefile ├── readme.md ├── res ├── English.json ├── background.png ├── coremapping.json ├── font.otf ├── icon-A-54.png ├── icon-B-54.png ├── icon-Y-54.png ├── icon-dpad-54.png ├── logo.png ├── mame.csv ├── settings.json └── skin.json ├── screenshots ├── main.png └── start.png └── src ├── SDL_rotozoom.c ├── SDL_rotozoom.h ├── cJSON.c ├── cJSON.h ├── config.h └── main.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/LICENSE -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/makefile -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/readme.md -------------------------------------------------------------------------------- /res/English.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/res/English.json -------------------------------------------------------------------------------- /res/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/res/background.png -------------------------------------------------------------------------------- /res/coremapping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/res/coremapping.json -------------------------------------------------------------------------------- /res/font.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/res/font.otf -------------------------------------------------------------------------------- /res/icon-A-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/res/icon-A-54.png -------------------------------------------------------------------------------- /res/icon-B-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/res/icon-B-54.png -------------------------------------------------------------------------------- /res/icon-Y-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/res/icon-Y-54.png -------------------------------------------------------------------------------- /res/icon-dpad-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/res/icon-dpad-54.png -------------------------------------------------------------------------------- /res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/res/logo.png -------------------------------------------------------------------------------- /res/mame.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/res/mame.csv -------------------------------------------------------------------------------- /res/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/res/settings.json -------------------------------------------------------------------------------- /res/skin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/res/skin.json -------------------------------------------------------------------------------- /screenshots/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/screenshots/main.png -------------------------------------------------------------------------------- /screenshots/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/screenshots/start.png -------------------------------------------------------------------------------- /src/SDL_rotozoom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/src/SDL_rotozoom.c -------------------------------------------------------------------------------- /src/SDL_rotozoom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/src/SDL_rotozoom.h -------------------------------------------------------------------------------- /src/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/src/cJSON.c -------------------------------------------------------------------------------- /src/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/src/cJSON.h -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/src/config.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgelessArchangel/RomSearch-for-RG35xx-Garlic-OS/HEAD/src/main.c --------------------------------------------------------------------------------