├── .gitattributes ├── .gitignore ├── .gitmodules ├── 7zS2.sfx ├── CoZIcon.ico ├── HACKING.md ├── LauncherIcon.ico ├── Newtonsoft.Json.dll ├── README.md ├── c0data └── WAVTABLE.dat ├── c0data_switch_eng └── system │ ├── gamedef.json │ └── patchdef.json ├── c0data_toc.csv ├── cc-edited-images └── .gitkeep ├── config.json ├── config.ps1.sample ├── content ├── CCPatch-README.txt ├── d3d10 ├── d3d10_1 ├── d3d10core ├── d3d11 ├── d3d9 ├── dxgi ├── languagebarrier │ ├── THIRDPARTY.patch.txt │ ├── defaultconfig.json │ ├── gamedef.json │ ├── patchdef.json │ ├── subs │ │ ├── cc_ed001a_karaonly.ass │ │ ├── cc_ed001a_tlonly.ass │ │ ├── cc_ed002a_karaonly.ass │ │ ├── cc_ed002a_tlonly.ass │ │ ├── fonts │ │ │ ├── Handy_Andy.otf │ │ │ ├── HighVoltage Rough.ttf │ │ │ ├── SoukouMincho.ttf │ │ │ ├── Typography Times Regular.ttf │ │ │ ├── hultog.regular_0.ttf │ │ │ └── kochi-gothic-subst.ttf │ │ ├── lq_cc_ed001a.bk2.ass │ │ ├── lq_cc_ed002a.bk2.ass │ │ ├── lq_movie_op.bk2.ass │ │ ├── lq_movie_op2.bk2.ass │ │ ├── movie_op2_karaonly.ass │ │ ├── movie_op2_tlonly.ass │ │ ├── movie_op_karaonly.ass │ │ └── movie_op_tlonly.ass │ └── versioninfo.json └── proton_boot_fix.sh ├── content_steamgrid ├── 970570.png ├── 970570_hero.png ├── 970570_logo.png └── 970570p.png ├── content_switch ├── CCPatch-README.txt └── THIRDPARTY.patch.txt ├── doc ├── misc │ ├── CheckSteamResolutions.ps1 │ ├── MakeSteamImageset.ps1 │ └── add_new_bgs.py └── voicefix │ ├── README.md │ ├── envita_additions.txt │ ├── generate_voice_json.rb │ └── wavtable_endian_swap.py ├── installer ├── build │ └── .gitkeep ├── noidget_build.bat ├── userdata.qrc ├── userdata │ ├── LICENSE.txt │ ├── README.txt │ ├── alert.png │ ├── bgm.mp3 │ ├── header.png │ ├── left.png │ ├── next_button.png │ ├── product.json │ ├── script.js │ └── scriptUninstaller.js └── userdataUninstaller.qrc ├── launcher ├── build │ └── .gitkeep └── realboot_build.bat ├── mpkpack.py ├── rcedit-x86.exe ├── terribuild.ps1 ├── terribuild_switch.ps1 ├── update.json └── xdelta3.exe /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/.gitmodules -------------------------------------------------------------------------------- /7zS2.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/7zS2.sfx -------------------------------------------------------------------------------- /CoZIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/CoZIcon.ico -------------------------------------------------------------------------------- /HACKING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/HACKING.md -------------------------------------------------------------------------------- /LauncherIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/LauncherIcon.ico -------------------------------------------------------------------------------- /Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/README.md -------------------------------------------------------------------------------- /c0data/WAVTABLE.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/c0data/WAVTABLE.dat -------------------------------------------------------------------------------- /c0data_switch_eng/system/gamedef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/c0data_switch_eng/system/gamedef.json -------------------------------------------------------------------------------- /c0data_switch_eng/system/patchdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/c0data_switch_eng/system/patchdef.json -------------------------------------------------------------------------------- /c0data_toc.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/c0data_toc.csv -------------------------------------------------------------------------------- /cc-edited-images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/config.json -------------------------------------------------------------------------------- /config.ps1.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/config.ps1.sample -------------------------------------------------------------------------------- /content/CCPatch-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/CCPatch-README.txt -------------------------------------------------------------------------------- /content/d3d10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/d3d10 -------------------------------------------------------------------------------- /content/d3d10_1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/d3d10_1 -------------------------------------------------------------------------------- /content/d3d10core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/d3d10core -------------------------------------------------------------------------------- /content/d3d11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/d3d11 -------------------------------------------------------------------------------- /content/d3d9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/d3d9 -------------------------------------------------------------------------------- /content/dxgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/dxgi -------------------------------------------------------------------------------- /content/languagebarrier/THIRDPARTY.patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/THIRDPARTY.patch.txt -------------------------------------------------------------------------------- /content/languagebarrier/defaultconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/defaultconfig.json -------------------------------------------------------------------------------- /content/languagebarrier/gamedef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/gamedef.json -------------------------------------------------------------------------------- /content/languagebarrier/patchdef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/patchdef.json -------------------------------------------------------------------------------- /content/languagebarrier/subs/cc_ed001a_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/cc_ed001a_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/cc_ed001a_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/cc_ed001a_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/cc_ed002a_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/cc_ed002a_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/cc_ed002a_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/cc_ed002a_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/Handy_Andy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/fonts/Handy_Andy.otf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/HighVoltage Rough.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/fonts/HighVoltage Rough.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/SoukouMincho.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/fonts/SoukouMincho.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/Typography Times Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/fonts/Typography Times Regular.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/hultog.regular_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/fonts/hultog.regular_0.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/fonts/kochi-gothic-subst.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/fonts/kochi-gothic-subst.ttf -------------------------------------------------------------------------------- /content/languagebarrier/subs/lq_cc_ed001a.bk2.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/lq_cc_ed001a.bk2.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/lq_cc_ed002a.bk2.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/lq_cc_ed002a.bk2.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/lq_movie_op.bk2.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/lq_movie_op.bk2.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/lq_movie_op2.bk2.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/lq_movie_op2.bk2.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/movie_op2_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/movie_op2_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/movie_op2_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/movie_op2_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/movie_op_karaonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/movie_op_karaonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/subs/movie_op_tlonly.ass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/subs/movie_op_tlonly.ass -------------------------------------------------------------------------------- /content/languagebarrier/versioninfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/languagebarrier/versioninfo.json -------------------------------------------------------------------------------- /content/proton_boot_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content/proton_boot_fix.sh -------------------------------------------------------------------------------- /content_steamgrid/970570.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content_steamgrid/970570.png -------------------------------------------------------------------------------- /content_steamgrid/970570_hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content_steamgrid/970570_hero.png -------------------------------------------------------------------------------- /content_steamgrid/970570_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content_steamgrid/970570_logo.png -------------------------------------------------------------------------------- /content_steamgrid/970570p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content_steamgrid/970570p.png -------------------------------------------------------------------------------- /content_switch/CCPatch-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content_switch/CCPatch-README.txt -------------------------------------------------------------------------------- /content_switch/THIRDPARTY.patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/content_switch/THIRDPARTY.patch.txt -------------------------------------------------------------------------------- /doc/misc/CheckSteamResolutions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/doc/misc/CheckSteamResolutions.ps1 -------------------------------------------------------------------------------- /doc/misc/MakeSteamImageset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/doc/misc/MakeSteamImageset.ps1 -------------------------------------------------------------------------------- /doc/misc/add_new_bgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/doc/misc/add_new_bgs.py -------------------------------------------------------------------------------- /doc/voicefix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/doc/voicefix/README.md -------------------------------------------------------------------------------- /doc/voicefix/envita_additions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/doc/voicefix/envita_additions.txt -------------------------------------------------------------------------------- /doc/voicefix/generate_voice_json.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/doc/voicefix/generate_voice_json.rb -------------------------------------------------------------------------------- /doc/voicefix/wavtable_endian_swap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/doc/voicefix/wavtable_endian_swap.py -------------------------------------------------------------------------------- /installer/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /installer/noidget_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/installer/noidget_build.bat -------------------------------------------------------------------------------- /installer/userdata.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/installer/userdata.qrc -------------------------------------------------------------------------------- /installer/userdata/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/installer/userdata/LICENSE.txt -------------------------------------------------------------------------------- /installer/userdata/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/installer/userdata/README.txt -------------------------------------------------------------------------------- /installer/userdata/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/installer/userdata/alert.png -------------------------------------------------------------------------------- /installer/userdata/bgm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/installer/userdata/bgm.mp3 -------------------------------------------------------------------------------- /installer/userdata/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/installer/userdata/header.png -------------------------------------------------------------------------------- /installer/userdata/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/installer/userdata/left.png -------------------------------------------------------------------------------- /installer/userdata/next_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/installer/userdata/next_button.png -------------------------------------------------------------------------------- /installer/userdata/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/installer/userdata/product.json -------------------------------------------------------------------------------- /installer/userdata/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/installer/userdata/script.js -------------------------------------------------------------------------------- /installer/userdata/scriptUninstaller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/installer/userdata/scriptUninstaller.js -------------------------------------------------------------------------------- /installer/userdataUninstaller.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/installer/userdataUninstaller.qrc -------------------------------------------------------------------------------- /launcher/build/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /launcher/realboot_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/launcher/realboot_build.bat -------------------------------------------------------------------------------- /mpkpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/mpkpack.py -------------------------------------------------------------------------------- /rcedit-x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/rcedit-x86.exe -------------------------------------------------------------------------------- /terribuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/terribuild.ps1 -------------------------------------------------------------------------------- /terribuild_switch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/terribuild_switch.ps1 -------------------------------------------------------------------------------- /update.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/update.json -------------------------------------------------------------------------------- /xdelta3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommitteeOfZero/cc-patch/HEAD/xdelta3.exe --------------------------------------------------------------------------------