├── .editorconfig ├── .git-blame-ignore-revs ├── .gitignore ├── .gitmodules ├── .mailmap ├── .tx └── config ├── AndroidSetup.md ├── CMake ├── CCache.cmake ├── CheckAndAddFlag.cmake ├── CheckLib.cmake ├── DolphinCompileDefinitions.cmake ├── DolphinPostprocessBundle.cmake ├── FindALSA.cmake ├── FindBacktrace.cmake ├── FindBlueZ.cmake ├── FindCubeb.cmake ├── FindEGL.cmake ├── FindFFmpeg.cmake ├── FindHIDAPI.cmake ├── FindLibUSB.cmake ├── FindLibevdev.cmake ├── FindLibsystemd.cmake ├── FindLibudev.cmake ├── FindMbedTLS.cmake ├── FindMiniupnpc.cmake ├── FindOProfile.cmake ├── FindOpenAL.cmake ├── FindOpenSLES.cmake ├── FindPulseAudio.cmake ├── FindSDL2.cmake ├── FindSFML.cmake └── Findpugixml.cmake ├── CMakeLists.txt ├── CMakeSettings.json ├── Contributing.md ├── Data ├── 51-usb-device.rules ├── Dolphin.icns ├── Sys │ ├── GC │ │ ├── dsp_coef.bin │ │ ├── dsp_rom.bin │ │ ├── font-licenses.txt │ │ ├── font_japanese.bin │ │ └── font_western.bin │ ├── GameSettings │ │ ├── 0000000100000002.ini │ │ ├── 0000000100000002r1.ini │ │ ├── C.ini │ │ ├── D43.ini │ │ ├── D43E01.ini │ │ ├── D43J01.ini │ │ ├── DD2.ini │ │ ├── DJU.ini │ │ ├── DLS.ini │ │ ├── DQA.ini │ │ ├── E.ini │ │ ├── E52.ini │ │ ├── E53.ini │ │ ├── E54.ini │ │ ├── E55.ini │ │ ├── E56.ini │ │ ├── E57.ini │ │ ├── E5W.ini │ │ ├── E5Z.ini │ │ ├── E62.ini │ │ ├── E63.ini │ │ ├── E6M.ini │ │ ├── E6N.ini │ │ ├── E6Q.ini │ │ ├── E6V.ini │ │ ├── E6W.ini │ │ ├── E6X.ini │ │ ├── E73.ini │ │ ├── E79.ini │ │ ├── E7J.ini │ │ ├── E7V.ini │ │ ├── E7Z.ini │ │ ├── EA2.ini │ │ ├── EA3.ini │ │ ├── EA4.ini │ │ ├── EA5.ini │ │ ├── EA6.ini │ │ ├── EA7.ini │ │ ├── EA8.ini │ │ ├── EA9.ini │ │ ├── EAA.ini │ │ ├── EAB.ini │ │ ├── EAC.ini │ │ ├── EAD.ini │ │ ├── EAE.ini │ │ ├── EAF.ini │ │ ├── EAG.ini │ │ ├── EAH.ini │ │ ├── EAI.ini │ │ ├── EAJ.ini │ │ ├── EAK.ini │ │ ├── EAL.ini │ │ ├── EAM.ini │ │ ├── EAN.ini │ │ ├── EAO.ini │ │ ├── EAP.ini │ │ ├── EAQ.ini │ │ ├── EAR.ini │ │ ├── EAS.ini │ │ ├── EAT.ini │ │ ├── EAU.ini │ │ ├── EAV.ini │ │ ├── EAW.ini │ │ ├── EAY.ini │ │ ├── EAZ.ini │ │ ├── EB2.ini │ │ ├── EB3.ini │ │ ├── EB4.ini │ │ ├── EB5.ini │ │ ├── EB6.ini │ │ ├── EB7.ini │ │ ├── EB8.ini │ │ ├── EB9.ini │ │ ├── EBA.ini │ │ ├── EBB.ini │ │ ├── EBC.ini │ │ ├── EBD.ini │ │ ├── EBE.ini │ │ ├── EBF.ini │ │ ├── EBG.ini │ │ ├── EBK.ini │ │ ├── EBL.ini │ │ ├── EBM.ini │ │ ├── EBN.ini │ │ ├── EBO.ini │ │ ├── EBP.ini │ │ ├── EBQ.ini │ │ ├── EBR.ini │ │ ├── EBS.ini │ │ ├── EBT.ini │ │ ├── EBU.ini │ │ ├── EBV.ini │ │ ├── EBW.ini │ │ ├── EBX.ini │ │ ├── EBZ.ini │ │ ├── ECA.ini │ │ ├── ECC.ini │ │ ├── ECD.ini │ │ ├── ECE.ini │ │ ├── ECF.ini │ │ ├── ECG.ini │ │ ├── ECI.ini │ │ ├── ECJ.ini │ │ ├── ECK.ini │ │ ├── ECL.ini │ │ ├── ECN.ini │ │ ├── F.ini │ │ ├── FAAE01.ini │ │ ├── FABE01.ini │ │ ├── FABP01.ini │ │ ├── FACE01.ini │ │ ├── FACP01.ini │ │ ├── FAFE01.ini │ │ ├── FAGE01.ini │ │ ├── FAHE01.ini │ │ ├── FAIE01.ini │ │ ├── FAJE01.ini │ │ ├── FAJP01.ini │ │ ├── FAKE01.ini │ │ ├── FAKP01.ini │ │ ├── FALE01.ini │ │ ├── FAME01.ini │ │ ├── FANE01.ini │ │ ├── FAOE01.ini │ │ ├── FARE01.ini │ │ ├── FASE01.ini │ │ ├── G2B.ini │ │ ├── G2FE78.ini │ │ ├── G2M.ini │ │ ├── G2ME01.ini │ │ ├── G2MP01.ini │ │ ├── G2O.ini │ │ ├── G2RE52.ini │ │ ├── G2V.ini │ │ ├── G2X.ini │ │ ├── G3A.ini │ │ ├── G3F.ini │ │ ├── G3L.ini │ │ ├── G3Q.ini │ │ ├── G3R.ini │ │ ├── G3X.ini │ │ ├── G3YP52.ini │ │ ├── G4C.ini │ │ ├── G4GEE9.ini │ │ ├── G4M.ini │ │ ├── G4NJDA.ini │ │ ├── G4QE01.ini │ │ ├── G4S.ini │ │ ├── G4SP01.ini │ │ ├── G5N.ini │ │ ├── G5T.ini │ │ ├── G6Q.ini │ │ ├── G6T.ini │ │ ├── G6W.ini │ │ ├── G8M.ini │ │ ├── G8ME01.ini │ │ ├── G8W.ini │ │ ├── G8WP01.ini │ │ ├── G9R.ini │ │ ├── G9S.ini │ │ ├── G9T.ini │ │ ├── GAA.ini │ │ ├── GAF.ini │ │ ├── GAFE01.ini │ │ ├── GAK.ini │ │ ├── GAL.ini │ │ ├── GALE01r0.ini │ │ ├── GALE01r1.ini │ │ ├── GALE01r2.ini │ │ ├── GALP01.ini │ │ ├── GAP.ini │ │ ├── GAU.ini │ │ ├── GAUE08.ini │ │ ├── GAV.ini │ │ ├── GAY.ini │ │ ├── GB3.ini │ │ ├── GB4E51.ini │ │ ├── GBH.ini │ │ ├── GBHEC8.ini │ │ ├── GBL.ini │ │ ├── GBM.ini │ │ ├── GBOP51.ini │ │ ├── GBS.ini │ │ ├── GBV.ini │ │ ├── GBW.ini │ │ ├── GBZP08.ini │ │ ├── GC2.ini │ │ ├── GC6.ini │ │ ├── GC9.ini │ │ ├── GCC.ini │ │ ├── GCCE01.ini │ │ ├── GCD.ini │ │ ├── GCE.ini │ │ ├── GCI.ini │ │ ├── GCN.ini │ │ ├── GCP.ini │ │ ├── GCVEEB.ini │ │ ├── GCZ.ini │ │ ├── GDD.ini │ │ ├── GDDE41.ini │ │ ├── GDE.ini │ │ ├── GDEE71.ini │ │ ├── GDG.ini │ │ ├── GDJEB2.ini │ │ ├── GDK.ini │ │ ├── GDM.ini │ │ ├── GDQ.ini │ │ ├── GDS.ini │ │ ├── GDT.ini │ │ ├── GDTE69.ini │ │ ├── GDV.ini │ │ ├── GDX.ini │ │ ├── GE3.ini │ │ ├── GE4.ini │ │ ├── GE5EA4.ini │ │ ├── GE9.ini │ │ ├── GEA.ini │ │ ├── GED.ini │ │ ├── GEN.ini │ │ ├── GEO.ini │ │ ├── GEZ.ini │ │ ├── GF4.ini │ │ ├── GF7.ini │ │ ├── GF7E01.ini │ │ ├── GF7P01.ini │ │ ├── GF8E69.ini │ │ ├── GFB.ini │ │ ├── GFD.ini │ │ ├── GFEE01.ini │ │ ├── GFEJ01.ini │ │ ├── GFF.ini │ │ ├── GFG.ini │ │ ├── GFH.ini │ │ ├── GFTE01.ini │ │ ├── GFY.ini │ │ ├── GFYE69.ini │ │ ├── GFZ.ini │ │ ├── GFZE01.ini │ │ ├── GFZJ01.ini │ │ ├── GFZJ8P.ini │ │ ├── GFZP01.ini │ │ ├── GGE.ini │ │ ├── GGN.ini │ │ ├── GGR.ini │ │ ├── GGS.ini │ │ ├── GGSEA4.ini │ │ ├── GGSPA4.ini │ │ ├── GGTE01.ini │ │ ├── GGV.ini │ │ ├── GGY.ini │ │ ├── GGZ.ini │ │ ├── GH2.ini │ │ ├── GH7.ini │ │ ├── GH9.ini │ │ ├── GHK.ini │ │ ├── GHME4F.ini │ │ ├── GHN.ini │ │ ├── GHQ.ini │ │ ├── GHR.ini │ │ ├── GHRE78.ini │ │ ├── GHS.ini │ │ ├── GHV.ini │ │ ├── GHY.ini │ │ ├── GIA.ini │ │ ├── GIC.ini │ │ ├── GICE78.ini │ │ ├── GIGJ8P.ini │ │ ├── GIL.ini │ │ ├── GINE69.ini │ │ ├── GIQ.ini │ │ ├── GIQE78.ini │ │ ├── GIS.ini │ │ ├── GIZ.ini │ │ ├── GJB.ini │ │ ├── GJCE8P.ini │ │ ├── GJK.ini │ │ ├── GJN.ini │ │ ├── GJUE78.ini │ │ ├── GJWE78.ini │ │ ├── GK2.ini │ │ ├── GK4.ini │ │ ├── GK4E01.ini │ │ ├── GK5.ini │ │ ├── GK7.ini │ │ ├── GKB.ini │ │ ├── GKH.ini │ │ ├── GKL.ini │ │ ├── GKM.ini │ │ ├── GKNEB2.ini │ │ ├── GKO.ini │ │ ├── GKS.ini │ │ ├── GKU.ini │ │ ├── GKY.ini │ │ ├── GKZ.ini │ │ ├── GL5.ini │ │ ├── GL7.ini │ │ ├── GLC.ini │ │ ├── GLG.ini │ │ ├── GLM.ini │ │ ├── GLME01.ini │ │ ├── GLMP01.ini │ │ ├── GLNE69.ini │ │ ├── GLR.ini │ │ ├── GLS.ini │ │ ├── GM2.ini │ │ ├── GM3.ini │ │ ├── GM4.ini │ │ ├── GM4E01.ini │ │ ├── GM4P01.ini │ │ ├── GM5.ini │ │ ├── GM6.ini │ │ ├── GM8.ini │ │ ├── GM8E01.ini │ │ ├── GMB.ini │ │ ├── GMD.ini │ │ ├── GMH.ini │ │ ├── GMI.ini │ │ ├── GMN.ini │ │ ├── GMPE01.ini │ │ ├── GMS.ini │ │ ├── GMSE01.ini │ │ ├── GMSP01.ini │ │ ├── GMX.ini │ │ ├── GMXE70.ini │ │ ├── GN4.ini │ │ ├── GN7.ini │ │ ├── GNC.ini │ │ ├── GNE.ini │ │ ├── GNHE5d.ini │ │ ├── GNI.ini │ │ ├── GNJ.ini │ │ ├── GNM.ini │ │ ├── GNN.ini │ │ ├── GNO.ini │ │ ├── GNWE69.ini │ │ ├── GO2.ini │ │ ├── GO2E4F.ini │ │ ├── GO7E69.ini │ │ ├── GO7F69.ini │ │ ├── GO7P69.ini │ │ ├── GOM.ini │ │ ├── GOME01.ini │ │ ├── GOQ.ini │ │ ├── GOS.ini │ │ ├── GOW.ini │ │ ├── GOY.ini │ │ ├── GOYE69.ini │ │ ├── GP2.ini │ │ ├── GP3.ini │ │ ├── GP5.ini │ │ ├── GP5E01.ini │ │ ├── GP6.ini │ │ ├── GP6E01.ini │ │ ├── GP7E01.ini │ │ ├── GPA.ini │ │ ├── GPE.ini │ │ ├── GPH.ini │ │ ├── GPIE01.ini │ │ ├── GPIP01.ini │ │ ├── GPK.ini │ │ ├── GPNP08.ini │ │ ├── GPO.ini │ │ ├── GPOE8P.ini │ │ ├── GPOP8P.ini │ │ ├── GPS.ini │ │ ├── GPSP8P.ini │ │ ├── GPT.ini │ │ ├── GPVE01.ini │ │ ├── GQC.ini │ │ ├── GQS.ini │ │ ├── GQSEAF.ini │ │ ├── GQX.ini │ │ ├── GRB.ini │ │ ├── GREE08.ini │ │ ├── GRH.ini │ │ ├── GRJ.ini │ │ ├── GRK.ini │ │ ├── GRNE52.ini │ │ ├── GRQ.ini │ │ ├── GRS.ini │ │ ├── GRSPAF.ini │ │ ├── GRU.ini │ │ ├── GRUE78.ini │ │ ├── GRY.ini │ │ ├── GS2.ini │ │ ├── GS2E78.ini │ │ ├── GSAP01.ini │ │ ├── GSM.ini │ │ ├── GSN.ini │ │ ├── GSNE8P.ini │ │ ├── GSNP8P.ini │ │ ├── GSO.ini │ │ ├── GSQ.ini │ │ ├── GSR.ini │ │ ├── GSS.ini │ │ ├── GSSE8P.ini │ │ ├── GST.ini │ │ ├── GSW.ini │ │ ├── GSX.ini │ │ ├── GSZ.ini │ │ ├── GT3.ini │ │ ├── GT6.ini │ │ ├── GT6E70.ini │ │ ├── GT7.ini │ │ ├── GTEE01.ini │ │ ├── GTEP01.ini │ │ ├── GTK.ini │ │ ├── GTKE51.ini │ │ ├── GTO.ini │ │ ├── GTR.ini │ │ ├── GTSE4F.ini │ │ ├── GTW.ini │ │ ├── GTZ.ini │ │ ├── GUB.ini │ │ ├── GUM.ini │ │ ├── GUN.ini │ │ ├── GUNE5D.ini │ │ ├── GUP.ini │ │ ├── GUT.ini │ │ ├── GUZ.ini │ │ ├── GVC.ini │ │ ├── GVJ.ini │ │ ├── GVL.ini │ │ ├── GVO.ini │ │ ├── GVS.ini │ │ ├── GVS46E.ini │ │ ├── GVS46J.ini │ │ ├── GW2.ini │ │ ├── GW7.ini │ │ ├── GWJ.ini │ │ ├── GWL.ini │ │ ├── GWLE6L.ini │ │ ├── GWLX6L.ini │ │ ├── GWP.ini │ │ ├── GWQE52.ini │ │ ├── GWRE01.ini │ │ ├── GWRP01.ini │ │ ├── GWT.ini │ │ ├── GWWP01.ini │ │ ├── GWY.ini │ │ ├── GX3.ini │ │ ├── GXB.ini │ │ ├── GXG.ini │ │ ├── GXM.ini │ │ ├── GXN.ini │ │ ├── GXS.ini │ │ ├── GXSP8P.ini │ │ ├── GXU.ini │ │ ├── GXX.ini │ │ ├── GYQ.ini │ │ ├── GYT.ini │ │ ├── GZ2.ini │ │ ├── GZ2E01.ini │ │ ├── GZ2J01.ini │ │ ├── GZ2P01.ini │ │ ├── GZ3E70.ini │ │ ├── GZD.ini │ │ ├── GZE.ini │ │ ├── GZL.ini │ │ ├── GZLE01.ini │ │ ├── GZLJ01.ini │ │ ├── GZLP01.ini │ │ ├── GZP.ini │ │ ├── GZW.ini │ │ ├── HA8.ini │ │ ├── HA9.ini │ │ ├── HAB.ini │ │ ├── HAC.ini │ │ ├── HAT.ini │ │ ├── HBA.ini │ │ ├── HBB.ini │ │ ├── HBC.ini │ │ ├── HBD.ini │ │ ├── HBF.ini │ │ ├── HBG.ini │ │ ├── HBI.ini │ │ ├── HBK.ini │ │ ├── HCL.ini │ │ ├── HCS.ini │ │ ├── J.ini │ │ ├── JA7.ini │ │ ├── JAE.ini │ │ ├── JAL.ini │ │ ├── JBA.ini │ │ ├── JBC.ini │ │ ├── JBK.ini │ │ ├── JBQ.ini │ │ ├── JBS.ini │ │ ├── JBU.ini │ │ ├── JC8.ini │ │ ├── JCD.ini │ │ ├── JCL.ini │ │ ├── JCT.ini │ │ ├── JCX.ini │ │ ├── JCY.ini │ │ ├── JDA.ini │ │ ├── JDV.ini │ │ ├── JEC.ini │ │ ├── L.ini │ │ ├── M.ini │ │ ├── MAK.ini │ │ ├── MB3.ini │ │ ├── MBA.ini │ │ ├── MCD.ini │ │ ├── MCS.ini │ │ ├── MCV.ini │ │ ├── MCW.ini │ │ ├── MCY.ini │ │ ├── MCZ.ini │ │ ├── N.ini │ │ ├── NAB.ini │ │ ├── NAC.ini │ │ ├── NAD.ini │ │ ├── NAE.ini │ │ ├── NAF.ini │ │ ├── NAH.ini │ │ ├── NAK.ini │ │ ├── NAL.ini │ │ ├── NAO.ini │ │ ├── NAR.ini │ │ ├── NAT.ini │ │ ├── P.ini │ │ ├── P2M.ini │ │ ├── P4B.ini │ │ ├── PC6.ini │ │ ├── PCK.ini │ │ ├── PCS.ini │ │ ├── PGS.ini │ │ ├── PNJ.ini │ │ ├── PRJ.ini │ │ ├── PZL.ini │ │ ├── PZLE01.ini │ │ ├── Q.ini │ │ ├── R22.ini │ │ ├── R25.ini │ │ ├── R26.ini │ │ ├── R29.ini │ │ ├── R2E.ini │ │ ├── R2F.ini │ │ ├── R2G.ini │ │ ├── R2H.ini │ │ ├── R2L.ini │ │ ├── R2M.ini │ │ ├── R2P.ini │ │ ├── R2Q.ini │ │ ├── R2R.ini │ │ ├── R35.ini │ │ ├── R38.ini │ │ ├── R3A.ini │ │ ├── R3B.ini │ │ ├── R3C.ini │ │ ├── R3D.ini │ │ ├── R3E.ini │ │ ├── R3G.ini │ │ ├── R3H.ini │ │ ├── R3J.ini │ │ ├── R3M.ini │ │ ├── R3N.ini │ │ ├── R3O.ini │ │ ├── R3R.ini │ │ ├── R44.ini │ │ ├── R46.ini │ │ ├── R4C.ini │ │ ├── R4D.ini │ │ ├── R4E.ini │ │ ├── R4F.ini │ │ ├── R4L.ini │ │ ├── R4M.ini │ │ ├── R4V.ini │ │ ├── R4Z.ini │ │ ├── R55.ini │ │ ├── R58.ini │ │ ├── R59.ini │ │ ├── R5D.ini │ │ ├── R5I.ini │ │ ├── R5O.ini │ │ ├── R5Q.ini │ │ ├── R5S.ini │ │ ├── R5T.ini │ │ ├── R5W.ini │ │ ├── R64.ini │ │ ├── R66.ini │ │ ├── R67.ini │ │ ├── R6B.ini │ │ ├── R6C.INI │ │ ├── R6E.ini │ │ ├── R6G.ini │ │ ├── R6Q.ini │ │ ├── R6T.ini │ │ ├── R6V.ini │ │ ├── R6Y.ini │ │ ├── R74.ini │ │ ├── R75.ini │ │ ├── R77.ini │ │ ├── R79.ini │ │ ├── R7B.ini │ │ ├── R7E.ini │ │ ├── R7G.ini │ │ ├── R7H.ini │ │ ├── R7K.ini │ │ ├── R7N.ini │ │ ├── R7P.ini │ │ ├── R7PE01.ini │ │ ├── R7PP01.ini │ │ ├── R7S.ini │ │ ├── R7X.ini │ │ ├── R82.ini │ │ ├── R84.ini │ │ ├── R86.ini │ │ ├── R88.ini │ │ ├── R89.ini │ │ ├── R8A.ini │ │ ├── R8D.ini │ │ ├── R8G.ini │ │ ├── R8J.ini │ │ ├── R8K.ini │ │ ├── R8L.ini │ │ ├── R8N.ini │ │ ├── R8P.ini │ │ ├── R8T.ini │ │ ├── R92.ini │ │ ├── R9B.ini │ │ ├── R9D.ini │ │ ├── R9E.ini │ │ ├── R9I.ini │ │ ├── R9Q.ini │ │ ├── R9R.ini │ │ ├── R9S.ini │ │ ├── R9W.ini │ │ ├── RAA.ini │ │ ├── RB2.ini │ │ ├── RB7.ini │ │ ├── RB8.ini │ │ ├── RB9.ini │ │ ├── RBB.ini │ │ ├── RBC.ini │ │ ├── RBF.ini │ │ ├── RBH.ini │ │ ├── RBI.ini │ │ ├── RBK.ini │ │ ├── RBL.ini │ │ ├── RBM.ini │ │ ├── RBO.ini │ │ ├── RBP.ini │ │ ├── RBQ.ini │ │ ├── RBR.ini │ │ ├── RBS.ini │ │ ├── RBT.ini │ │ ├── RBW.ini │ │ ├── RBZ.ini │ │ ├── RC4.ini │ │ ├── RC5.ini │ │ ├── RCB.ini │ │ ├── RCC.ini │ │ ├── RCE.ini │ │ ├── RCF.ini │ │ ├── RCH.ini │ │ ├── RCJ.ini │ │ ├── RCK.ini │ │ ├── RCL.ini │ │ ├── RCO.ini │ │ ├── RCP.ini │ │ ├── RCS.ini │ │ ├── RCT.ini │ │ ├── RCU.ini │ │ ├── RCY.ini │ │ ├── RD8.ini │ │ ├── RD9.ini │ │ ├── RDA.ini │ │ ├── RDB.ini │ │ ├── RDF.ini │ │ ├── RDL.ini │ │ ├── RDM.ini │ │ ├── RDP.ini │ │ ├── RDS.ini │ │ ├── RDT.ini │ │ ├── RDU.ini │ │ ├── RE8.ini │ │ ├── REB.ini │ │ ├── RED.ini │ │ ├── REF.ini │ │ ├── REL.ini │ │ ├── RELJAB.ini │ │ ├── REM.ini │ │ ├── REP.ini │ │ ├── REQ.ini │ │ ├── RES.ini │ │ ├── RET.ini │ │ ├── REU.ini │ │ ├── REZ.ini │ │ ├── RF2.ini │ │ ├── RF4.ini │ │ ├── RFA.ini │ │ ├── RFB.ini │ │ ├── RFC.ini │ │ ├── RFF.ini │ │ ├── RFK.ini │ │ ├── RFQ.ini │ │ ├── RFR.ini │ │ ├── RFS.ini │ │ ├── RFT.ini │ │ ├── RFU.ini │ │ ├── RFW.ini │ │ ├── RG2.ini │ │ ├── RG4.ini │ │ ├── RG6.ini │ │ ├── RG8.ini │ │ ├── RGB.ini │ │ ├── RGD.ini │ │ ├── RGI.ini │ │ ├── RGJ.ini │ │ ├── RGK.ini │ │ ├── RGM.ini │ │ ├── RGN.ini │ │ ├── RGQ.ini │ │ ├── RGQE70.ini │ │ ├── RGS.ini │ │ ├── RGW.ini │ │ ├── RGX.ini │ │ ├── RGY.ini │ │ ├── RH2.ini │ │ ├── RH4.ini │ │ ├── RH5.ini │ │ ├── RH7.ini │ │ ├── RH8.ini │ │ ├── RH9.ini │ │ ├── RHC.ini │ │ ├── RHD.ini │ │ ├── RHE.ini │ │ ├── RHF.ini │ │ ├── RHG.ini │ │ ├── RHJ.ini │ │ ├── RHL.ini │ │ ├── RHM.ini │ │ ├── RHN.ini │ │ ├── RHO.ini │ │ ├── RHP.ini │ │ ├── RHR.ini │ │ ├── RHV.ini │ │ ├── RHZ.ini │ │ ├── RI2.ini │ │ ├── RI3.ini │ │ ├── RI7.ini │ │ ├── RIE.ini │ │ ├── RIF.ini │ │ ├── RIG.ini │ │ ├── RIL.ini │ │ ├── RIM.ini │ │ ├── RIP.ini │ │ ├── RIR.ini │ │ ├── RIU.ini │ │ ├── RIZ.ini │ │ ├── RJ2.ini │ │ ├── RJ4.ini │ │ ├── RJ7.ini │ │ ├── RJB.ini │ │ ├── RJC.ini │ │ ├── RJE.ini │ │ ├── RJF.ini │ │ ├── RJN.ini │ │ ├── RJQ.ini │ │ ├── RJS.ini │ │ ├── RJZ.ini │ │ ├── RK2.ini │ │ ├── RK9.ini │ │ ├── RKA.ini │ │ ├── RKD.ini │ │ ├── RKF.ini │ │ ├── RKG.ini │ │ ├── RKI.ini │ │ ├── RKJ.ini │ │ ├── RKL.ini │ │ ├── RKQ.ini │ │ ├── RKS.ini │ │ ├── RKT.ini │ │ ├── RKW.ini │ │ ├── RL5.ini │ │ ├── RLD.ini │ │ ├── RLJ.ini │ │ ├── RLK.ini │ │ ├── RLL.ini │ │ ├── RLS.ini │ │ ├── RLT.ini │ │ ├── RLV.ini │ │ ├── RLX.ini │ │ ├── RM3.ini │ │ ├── RM7.ini │ │ ├── RM8.ini │ │ ├── RM8E01.ini │ │ ├── RM9.ini │ │ ├── RMC.ini │ │ ├── RME.ini │ │ ├── RMG.ini │ │ ├── RMH.ini │ │ ├── RMHE08.ini │ │ ├── RMHJ08.ini │ │ ├── RMHP08.ini │ │ ├── RMI.ini │ │ ├── RMJ.ini │ │ ├── RMK.ini │ │ ├── RML.ini │ │ ├── RMO.ini │ │ ├── RMP.ini │ │ ├── RMQ.ini │ │ ├── RMR.ini │ │ ├── RMT.ini │ │ ├── RMV.ini │ │ ├── RMW.ini │ │ ├── RMY.ini │ │ ├── RMZ.ini │ │ ├── RN2.ini │ │ ├── RN5.ini │ │ ├── RN8.ini │ │ ├── RNC.ini │ │ ├── RND.ini │ │ ├── RNG.ini │ │ ├── RNM.ini │ │ ├── RNO.ini │ │ ├── RNU.ini │ │ ├── RNV.ini │ │ ├── RNW.ini │ │ ├── RNX.ini │ │ ├── RO2P7N.ini │ │ ├── RO3.ini │ │ ├── RO9.ini │ │ ├── ROA.ini │ │ ├── ROB.ini │ │ ├── ROC.ini │ │ ├── ROD.ini │ │ ├── ROE.ini │ │ ├── ROF.ini │ │ ├── ROG.ini │ │ ├── ROL.ini │ │ ├── RON.ini │ │ ├── ROO.ini │ │ ├── ROP.ini │ │ ├── ROT.ini │ │ ├── ROU.ini │ │ ├── ROW.ini │ │ ├── RPB.ini │ │ ├── RPC.ini │ │ ├── RPD.ini │ │ ├── RPG.ini │ │ ├── RPH.ini │ │ ├── RPJ.ini │ │ ├── RPK.ini │ │ ├── RPL.ini │ │ ├── RPM.ini │ │ ├── RPO.ini │ │ ├── RPP.ini │ │ ├── RPQ.ini │ │ ├── RPS.ini │ │ ├── RPT.ini │ │ ├── RPU.ini │ │ ├── RPY.ini │ │ ├── RQ2.ini │ │ ├── RQ4.ini │ │ ├── RQ5.ini │ │ ├── RQ6.ini │ │ ├── RQ8.ini │ │ ├── RQB.ini │ │ ├── RQE.ini │ │ ├── RQF.ini │ │ ├── RQM.ini │ │ ├── RQP.ini │ │ ├── RQQ.ini │ │ ├── RQR.ini │ │ ├── RQS.ini │ │ ├── RQT.ini │ │ ├── RQU.ini │ │ ├── RQW.ini │ │ ├── RR2.ini │ │ ├── RR3.ini │ │ ├── RR5.ini │ │ ├── RRA.ini │ │ ├── RRB.ini │ │ ├── RRF.ini │ │ ├── RRK.ini │ │ ├── RRL.ini │ │ ├── RRO.ini │ │ ├── RRP.ini │ │ ├── RRS.ini │ │ ├── RRV.ini │ │ ├── RRW.ini │ │ ├── RRX.ini │ │ ├── RRZ.ini │ │ ├── RS2.ini │ │ ├── RS4.ini │ │ ├── RS5.ini │ │ ├── RSA.ini │ │ ├── RSB.ini │ │ ├── RSBE01.ini │ │ ├── RSBP01.ini │ │ ├── RSD.ini │ │ ├── RSH.ini │ │ ├── RSI.ini │ │ ├── RSJ.ini │ │ ├── RSL.ini │ │ ├── RSM.ini │ │ ├── RSN.ini │ │ ├── RSP.ini │ │ ├── RSS.ini │ │ ├── RSX.ini │ │ ├── RSY.ini │ │ ├── RT3.ini │ │ ├── RT4.ini │ │ ├── RT8.ini │ │ ├── RTB.ini │ │ ├── RTG.ini │ │ ├── RTJ.ini │ │ ├── RTK.ini │ │ ├── RTL.ini │ │ ├── RTM.ini │ │ ├── RTP.ini │ │ ├── RTQ.ini │ │ ├── RTR.ini │ │ ├── RTT.ini │ │ ├── RTU.ini │ │ ├── RTW.ini │ │ ├── RTZ.ini │ │ ├── RUD.ini │ │ ├── RUF.ini │ │ ├── RUN.ini │ │ ├── RUO.ini │ │ ├── RUP.ini │ │ ├── RUR.ini │ │ ├── RUU.ini │ │ ├── RUW.ini │ │ ├── RV2.ini │ │ ├── RVB.ini │ │ ├── RVC.ini │ │ ├── RVE.ini │ │ ├── RVN.ini │ │ ├── RVO.ini │ │ ├── RVQ.ini │ │ ├── RVR.ini │ │ ├── RW3.ini │ │ ├── RW4.ini │ │ ├── RW8.ini │ │ ├── RWA.ini │ │ ├── RWB.ini │ │ ├── RWC.ini │ │ ├── RWF.ini │ │ ├── RWH.ini │ │ ├── RWK.ini │ │ ├── RWN.ini │ │ ├── RWO.ini │ │ ├── RWQ.ini │ │ ├── RWS.ini │ │ ├── RWY.ini │ │ ├── RWZ.ini │ │ ├── RX3.ini │ │ ├── RX4.ini │ │ ├── RX4E4Z.ini │ │ ├── RX4PMT.ini │ │ ├── RX6.ini │ │ ├── RXB.ini │ │ ├── RXC.ini │ │ ├── RXF.ini │ │ ├── RXH.ini │ │ ├── RXR.ini │ │ ├── RXV.ini │ │ ├── RXX.ini │ │ ├── RXZ.ini │ │ ├── RY2.ini │ │ ├── RY3.ini │ │ ├── RY4.ini │ │ ├── RY8.ini │ │ ├── RYB.ini │ │ ├── RYG.ini │ │ ├── RYH.ini │ │ ├── RYI.ini │ │ ├── RYL.ini │ │ ├── RYN.ini │ │ ├── RYV.ini │ │ ├── RYW.ini │ │ ├── RYZ.ini │ │ ├── RZ2.ini │ │ ├── RZ3.ini │ │ ├── RZ4.ini │ │ ├── RZ5.ini │ │ ├── RZ6.ini │ │ ├── RZ7.ini │ │ ├── RZ8.ini │ │ ├── RZD.ini │ │ ├── RZDE01r0.ini │ │ ├── RZDE01r2.ini │ │ ├── RZDJ01.ini │ │ ├── RZDP01.ini │ │ ├── RZF.ini │ │ ├── RZJ.ini │ │ ├── RZJP69.ini │ │ ├── RZO.ini │ │ ├── RZR.ini │ │ ├── RZT.ini │ │ ├── RZY.ini │ │ ├── S2C.ini │ │ ├── S2E.ini │ │ ├── S2L.ini │ │ ├── S2O.ini │ │ ├── S2W.ini │ │ ├── S3B.ini │ │ ├── S3H.ini │ │ ├── S59.ini │ │ ├── S5D.ini │ │ ├── S72.ini │ │ ├── S75.ini │ │ ├── SAG.ini │ │ ├── SAK.ini │ │ ├── SAL.ini │ │ ├── SAN.ini │ │ ├── SAT.ini │ │ ├── SB3.ini │ │ ├── SB4.ini │ │ ├── SB8.ini │ │ ├── SBD.ini │ │ ├── SBE.ini │ │ ├── SBF.ini │ │ ├── SBQ.ini │ │ ├── SBR.ini │ │ ├── SBV.ini │ │ ├── SBX.ini │ │ ├── SBY.ini │ │ ├── SBZ.ini │ │ ├── SC2E8P.ini │ │ ├── SC7.ini │ │ ├── SCA.ini │ │ ├── SCE.ini │ │ ├── SCF.ini │ │ ├── SCH.ini │ │ ├── SCK.ini │ │ ├── SCT.ini │ │ ├── SCY.ini │ │ ├── SD2.ini │ │ ├── SD2J01.ini │ │ ├── SD8.ini │ │ ├── SDB.ini │ │ ├── SDE.ini │ │ ├── SDL.ini │ │ ├── SDM.ini │ │ ├── SDN.ini │ │ ├── SDO.ini │ │ ├── SDW.ini │ │ ├── SE2.ini │ │ ├── SEA.ini │ │ ├── SEG.ini │ │ ├── SEM.ini │ │ ├── SER.ini │ │ ├── SF7.ini │ │ ├── SF8.ini │ │ ├── SFI.ini │ │ ├── SFP.ini │ │ ├── SFR.ini │ │ ├── SG2.ini │ │ ├── SG3.ini │ │ ├── SG8.ini │ │ ├── SGD.ini │ │ ├── SGT.ini │ │ ├── SGV.ini │ │ ├── SH2.ini │ │ ├── SH6.ini │ │ ├── SH9.ini │ │ ├── SHL.ini │ │ ├── SHO.ini │ │ ├── SHW.ini │ │ ├── SIL.ini │ │ ├── SIS.ini │ │ ├── SJB.ini │ │ ├── SJC.ini │ │ ├── SJD.ini │ │ ├── SJDJ01.ini │ │ ├── SJE.ini │ │ ├── SJK.ini │ │ ├── SJL.ini │ │ ├── SJQ.ini │ │ ├── SJX.ini │ │ ├── SK3.ini │ │ ├── SKA.ini │ │ ├── SKB.ini │ │ ├── SKC.ini │ │ ├── SKG.ini │ │ ├── SKJ.ini │ │ ├── SKO.ini │ │ ├── SKP.ini │ │ ├── SKT.ini │ │ ├── SKU.ini │ │ ├── SKV.ini │ │ ├── SKW.ini │ │ ├── SKX.ini │ │ ├── SL2.ini │ │ ├── SLP.ini │ │ ├── SLS.ini │ │ ├── SLW.ini │ │ ├── SM6.ini │ │ ├── SMB.ini │ │ ├── SMF.ini │ │ ├── SMI.ini │ │ ├── SMM.ini │ │ ├── SMN.ini │ │ ├── SMNE01.ini │ │ ├── SMNP01.ini │ │ ├── SMO.ini │ │ ├── SMU.ini │ │ ├── SMZ.ini │ │ ├── SNC.ini │ │ ├── SND.ini │ │ ├── SNG.ini │ │ ├── SNJ.ini │ │ ├── SNJE69.ini │ │ ├── SNM.ini │ │ ├── SNS.ini │ │ ├── SNT.ini │ │ ├── SNY.ini │ │ ├── SOC.ini │ │ ├── SOD.ini │ │ ├── SOM.ini │ │ ├── SOR.ini │ │ ├── SOS.ini │ │ ├── SOU.ini │ │ ├── SP3.ini │ │ ├── SP8.ini │ │ ├── SP9.ini │ │ ├── SPA.ini │ │ ├── SPC.ini │ │ ├── SPD.ini │ │ ├── SPH.ini │ │ ├── SPM.ini │ │ ├── SPR.ini │ │ ├── SPT.ini │ │ ├── SPU.ini │ │ ├── SPV.ini │ │ ├── SPZ.ini │ │ ├── SQD.ini │ │ ├── SQI.ini │ │ ├── SR5.ini │ │ ├── SR6.ini │ │ ├── SR7.ini │ │ ├── SR8.ini │ │ ├── SR9.ini │ │ ├── SRA.ini │ │ ├── SRE.ini │ │ ├── SRL.ini │ │ ├── SRT.ini │ │ ├── SRV.ini │ │ ├── SRW.ini │ │ ├── SS8.ini │ │ ├── SS9.ini │ │ ├── SSC.ini │ │ ├── SSG.ini │ │ ├── SSH.ini │ │ ├── SSQ.ini │ │ ├── SSR.ini │ │ ├── SST.ini │ │ ├── SSZ.ini │ │ ├── ST4.ini │ │ ├── STM.ini │ │ ├── STS.ini │ │ ├── STV.ini │ │ ├── SU3.ini │ │ ├── SU7.ini │ │ ├── SUK.ini │ │ ├── SUKE01.ini │ │ ├── SUKJ01.ini │ │ ├── SUM.ini │ │ ├── SUS.ini │ │ ├── SUU.ini │ │ ├── SUW.ini │ │ ├── SVB.ini │ │ ├── SVF.ini │ │ ├── SVM.ini │ │ ├── SVV.ini │ │ ├── SVW.ini │ │ ├── SVX.ini │ │ ├── SVZ.ini │ │ ├── SX3.ini │ │ ├── SX4.ini │ │ ├── SX7.ini │ │ ├── SX8.ini │ │ ├── SXC.ini │ │ ├── SZB.ini │ │ ├── W22.ini │ │ ├── W2G.ini │ │ ├── W2L.ini │ │ ├── W34.ini │ │ ├── W3B.ini │ │ ├── W3G.ini │ │ ├── W3M.ini │ │ ├── W4A.ini │ │ ├── W4O.ini │ │ ├── W5I.ini │ │ ├── W64.ini │ │ ├── W69.ini │ │ ├── W8I.ini │ │ ├── W8L.ini │ │ ├── W8X.ini │ │ ├── W9L.ini │ │ ├── WA2.ini │ │ ├── WAF.ini │ │ ├── WAN.ini │ │ ├── WAZ.ini │ │ ├── WB2.ini │ │ ├── WB3.ini │ │ ├── WB4.ini │ │ ├── WB6.ini │ │ ├── WB7.ini │ │ ├── WB8.ini │ │ ├── WBA.ini │ │ ├── WBI.ini │ │ ├── WBK.ini │ │ ├── WBL.ini │ │ ├── WBR.ini │ │ ├── WBV.ini │ │ ├── WBX.ini │ │ ├── WBY.ini │ │ ├── WBZ.ini │ │ ├── WC2.ini │ │ ├── WC6.ini │ │ ├── WCH.ini │ │ ├── WCI.ini │ │ ├── WCJ.ini │ │ ├── WCO.ini │ │ ├── WCP.ini │ │ ├── WCU.ini │ │ ├── WCV.ini │ │ ├── WCZ.ini │ │ ├── WD9.ini │ │ ├── WDA.ini │ │ ├── WDE.ini │ │ ├── WDF.ini │ │ ├── WDN.ini │ │ ├── WDO.ini │ │ ├── WDX.ini │ │ ├── WEM.ini │ │ ├── WF3.ini │ │ ├── WF4.ini │ │ ├── WF5.ini │ │ ├── WFA.ini │ │ ├── WFH.ini │ │ ├── WFI.ini │ │ ├── WFK.ini │ │ ├── WFL.ini │ │ ├── WFM.ini │ │ ├── WFN.ini │ │ ├── WFU.ini │ │ ├── WFY.ini │ │ ├── WGG.ini │ │ ├── WGL.ini │ │ ├── WGS.ini │ │ ├── WGU.ini │ │ ├── WH3.ini │ │ ├── WHE.ini │ │ ├── WHF.ini │ │ ├── WHO.ini │ │ ├── WHP.ini │ │ ├── WHU.ini │ │ ├── WHW.ini │ │ ├── WIB.ini │ │ ├── WIC.ini │ │ ├── WIN.ini │ │ ├── WIT.ini │ │ ├── WJA.ini │ │ ├── WJS.ini │ │ ├── WKD.ini │ │ ├── WKE.ini │ │ ├── WKI.ini │ │ ├── WKK.ini │ │ ├── WKN.ini │ │ ├── WKT.ini │ │ ├── WKU.ini │ │ ├── WKW.ini │ │ ├── WLC.ini │ │ ├── WLD.ini │ │ ├── WLE.ini │ │ ├── WLJ.ini │ │ ├── WLK.ini │ │ ├── WLM.ini │ │ ├── WLN.ini │ │ ├── WLO.ini │ │ ├── WLP.ini │ │ ├── WLT.ini │ │ ├── WLX.ini │ │ ├── WLZ.ini │ │ ├── WM4.ini │ │ ├── WM5.ini │ │ ├── WM9.ini │ │ ├── WMA.ini │ │ ├── WMB.ini │ │ ├── WMD.ini │ │ ├── WMG.ini │ │ ├── WML.ini │ │ ├── WMO.ini │ │ ├── WMS.ini │ │ ├── WO6.ini │ │ ├── WOA.ini │ │ ├── WOD.ini │ │ ├── WOF.ini │ │ ├── WOG.ini │ │ ├── WOL.ini │ │ ├── WOP.ini │ │ ├── WOX.ini │ │ ├── WOY.ini │ │ ├── WP4.ini │ │ ├── WP6.ini │ │ ├── WP9.ini │ │ ├── WPA.ini │ │ ├── WPB.ini │ │ ├── WPD.ini │ │ ├── WPF.ini │ │ ├── WPH.ini │ │ ├── WPJ.ini │ │ ├── WPN.ini │ │ ├── WPP.ini │ │ ├── WPQ.ini │ │ ├── WPS.ini │ │ ├── WPT.ini │ │ ├── WPU.ini │ │ ├── WPX.ini │ │ ├── WPZ.ini │ │ ├── WQ4.ini │ │ ├── WR5.ini │ │ ├── WR9.ini │ │ ├── WRA.ini │ │ ├── WRD.ini │ │ ├── WRF.ini │ │ ├── WRI.ini │ │ ├── WRS.ini │ │ ├── WRX.ini │ │ ├── WS2.ini │ │ ├── WS3.ini │ │ ├── WS4.ini │ │ ├── WS5.ini │ │ ├── WS6.ini │ │ ├── WS9.ini │ │ ├── WSH.ini │ │ ├── WSI.ini │ │ ├── WSL.ini │ │ ├── WSR.ini │ │ ├── WSX.ini │ │ ├── WT8.ini │ │ ├── WTB.ini │ │ ├── WTD.ini │ │ ├── WTE.ini │ │ ├── WTI.ini │ │ ├── WTK.ini │ │ ├── WTN.ini │ │ ├── WTU.ini │ │ ├── WTX.ini │ │ ├── WUK.ini │ │ ├── WW2.ini │ │ ├── WW3.ini │ │ ├── WWA.ini │ │ ├── WWI.ini │ │ ├── WWX.ini │ │ ├── WXB.ini │ │ ├── WXP.ini │ │ ├── WXR.ini │ │ ├── WYM.ini │ │ ├── WZB.ini │ │ ├── WZG.ini │ │ ├── WZI.ini │ │ ├── WZM.ini │ │ ├── XH2.ini │ │ ├── XH7.ini │ │ ├── XH9.ini │ │ ├── XHD.ini │ │ ├── XI9.ini │ │ ├── XIT.ini │ │ ├── XIU.ini │ │ └── XIV.ini │ ├── Maps │ │ ├── GFZE01.map │ │ └── GMBE8P.map │ ├── Resources │ │ ├── Dolphin.png │ │ ├── Flag_Australia.png │ │ ├── Flag_Australia@2x.png │ │ ├── Flag_Australia@4x.png │ │ ├── Flag_Europe.png │ │ ├── Flag_Europe@2x.png │ │ ├── Flag_Europe@4x.png │ │ ├── Flag_France.png │ │ ├── Flag_France@2x.png │ │ ├── Flag_France@4x.png │ │ ├── Flag_Germany.png │ │ ├── Flag_Germany@2x.png │ │ ├── Flag_Germany@4x.png │ │ ├── Flag_International.png │ │ ├── Flag_International@2x.png │ │ ├── Flag_International@4x.png │ │ ├── Flag_Italy.png │ │ ├── Flag_Italy@2x.png │ │ ├── Flag_Italy@4x.png │ │ ├── Flag_Japan.png │ │ ├── Flag_Japan@2x.png │ │ ├── Flag_Japan@4x.png │ │ ├── Flag_Korea.png │ │ ├── Flag_Korea@2x.png │ │ ├── Flag_Korea@4x.png │ │ ├── Flag_Netherlands.png │ │ ├── Flag_Netherlands@2x.png │ │ ├── Flag_Netherlands@4x.png │ │ ├── Flag_Russia.png │ │ ├── Flag_Russia@2x.png │ │ ├── Flag_Russia@4x.png │ │ ├── Flag_Spain.png │ │ ├── Flag_Spain@2x.png │ │ ├── Flag_Spain@4x.png │ │ ├── Flag_Taiwan.png │ │ ├── Flag_Taiwan@2x.png │ │ ├── Flag_Taiwan@4x.png │ │ ├── Flag_USA.png │ │ ├── Flag_USA@2x.png │ │ ├── Flag_USA@4x.png │ │ ├── Flag_Unknown.png │ │ ├── Flag_Unknown@2x.png │ │ ├── Flag_Unknown@4x.png │ │ ├── Platform_File.png │ │ ├── Platform_File@2x.png │ │ ├── Platform_File@4x.png │ │ ├── Platform_Gamecube.png │ │ ├── Platform_Gamecube@2x.png │ │ ├── Platform_Gamecube@4x.png │ │ ├── Platform_Wad.png │ │ ├── Platform_Wad@2x.png │ │ ├── Platform_Wad@4x.png │ │ ├── Platform_Wii.png │ │ ├── Platform_Wii@2x.png │ │ ├── Platform_Wii@4x.png │ │ ├── dolphin_logo.png │ │ ├── dolphin_logo@2x.png │ │ ├── isoproperties_disc.png │ │ ├── isoproperties_file.png │ │ ├── isoproperties_folder.png │ │ ├── nobanner.png │ │ └── nobanner@2x.png │ ├── Shaders │ │ ├── 16bit.glsl │ │ ├── 32bit.glsl │ │ ├── Anaglyph │ │ │ ├── dubois-LCD-Amber-Blue.glsl │ │ │ ├── dubois-LCD-Green-Magenta.glsl │ │ │ ├── dubois.glsl │ │ │ ├── fullcolor.glsl │ │ │ ├── grayscale.glsl │ │ │ └── grayscale2.glsl │ │ ├── FXAA.glsl │ │ ├── Passive │ │ │ └── horizontal.glsl │ │ ├── acidmetal.glsl │ │ ├── acidtrip.glsl │ │ ├── acidtrip2.glsl │ │ ├── asciiart.glsl │ │ ├── auto_toon.glsl │ │ ├── auto_toon2.glsl │ │ ├── bad_bloom.glsl │ │ ├── brighten.glsl │ │ ├── chrismas.glsl │ │ ├── cool1.glsl │ │ ├── darkerbrighter.glsl │ │ ├── emboss.glsl │ │ ├── fire.glsl │ │ ├── fire2.glsl │ │ ├── firewater.glsl │ │ ├── grayscale.glsl │ │ ├── grayscale2.glsl │ │ ├── invert.glsl │ │ ├── invert_blue.glsl │ │ ├── invertedoutline.glsl │ │ ├── lens_distortion.glsl │ │ ├── mad_world.glsl │ │ ├── nightvision.glsl │ │ ├── nightvision2.glsl │ │ ├── nightvision2scanlines.glsl │ │ ├── posterize.glsl │ │ ├── posterize2.glsl │ │ ├── primarycolors.glsl │ │ ├── sepia.glsl │ │ ├── sketchy.glsl │ │ ├── spookey1.glsl │ │ ├── spookey2.glsl │ │ ├── sunset.glsl │ │ ├── swap_RGB_BGR.glsl │ │ ├── swap_RGB_BRG.glsl │ │ ├── swap_RGB_GBR.glsl │ │ ├── swap_RGB_GRB.glsl │ │ ├── swap_RGB_RBG.glsl │ │ └── toxic.glsl │ ├── Themes │ │ ├── Clean Blue │ │ │ ├── browse.png │ │ │ ├── browse@2x.png │ │ │ ├── browse@4x.png │ │ │ ├── classic.png │ │ │ ├── classic@2x.png │ │ │ ├── classic@4x.png │ │ │ ├── config.png │ │ │ ├── config@2x.png │ │ │ ├── config@4x.png │ │ │ ├── debugger_add_breakpoint.png │ │ │ ├── debugger_add_breakpoint@2x.png │ │ │ ├── debugger_add_breakpoint@4x.png │ │ │ ├── debugger_add_memorycheck.png │ │ │ ├── debugger_add_memorycheck@2x.png │ │ │ ├── debugger_add_memorycheck@4x.png │ │ │ ├── debugger_breakpoint.png │ │ │ ├── debugger_breakpoint@2x.png │ │ │ ├── debugger_breakpoint@4x.png │ │ │ ├── debugger_clear.png │ │ │ ├── debugger_clear@2x.png │ │ │ ├── debugger_clear@4x.png │ │ │ ├── debugger_delete.png │ │ │ ├── debugger_delete@2x.png │ │ │ ├── debugger_delete@4x.png │ │ │ ├── debugger_load.png │ │ │ ├── debugger_load@2x.png │ │ │ ├── debugger_load@4x.png │ │ │ ├── debugger_save.png │ │ │ ├── debugger_save@2x.png │ │ │ ├── debugger_save@4x.png │ │ │ ├── debugger_set_pc.png │ │ │ ├── debugger_set_pc@2x.png │ │ │ ├── debugger_set_pc@4x.png │ │ │ ├── debugger_show_pc.png │ │ │ ├── debugger_show_pc@2x.png │ │ │ ├── debugger_show_pc@4x.png │ │ │ ├── debugger_skip.png │ │ │ ├── debugger_skip@2x.png │ │ │ ├── debugger_skip@4x.png │ │ │ ├── debugger_step_in.png │ │ │ ├── debugger_step_in@2x.png │ │ │ ├── debugger_step_in@4x.png │ │ │ ├── debugger_step_out.png │ │ │ ├── debugger_step_out@2x.png │ │ │ ├── debugger_step_out@4x.png │ │ │ ├── debugger_step_over.png │ │ │ ├── debugger_step_over@2x.png │ │ │ ├── debugger_step_over@4x.png │ │ │ ├── fullscreen.png │ │ │ ├── fullscreen@2x.png │ │ │ ├── fullscreen@4x.png │ │ │ ├── gcpad.png │ │ │ ├── gcpad@2x.png │ │ │ ├── gcpad@4x.png │ │ │ ├── graphics.png │ │ │ ├── graphics@2x.png │ │ │ ├── graphics@4x.png │ │ │ ├── open.png │ │ │ ├── open@2x.png │ │ │ ├── open@4x.png │ │ │ ├── pause.png │ │ │ ├── pause@2x.png │ │ │ ├── pause@4x.png │ │ │ ├── play.png │ │ │ ├── play@2x.png │ │ │ ├── play@4x.png │ │ │ ├── refresh.png │ │ │ ├── refresh@2x.png │ │ │ ├── refresh@4x.png │ │ │ ├── screenshot.png │ │ │ ├── screenshot@2x.png │ │ │ ├── screenshot@4x.png │ │ │ ├── stop.png │ │ │ ├── stop@2x.png │ │ │ ├── stop@4x.png │ │ │ ├── wiimote.png │ │ │ ├── wiimote@2x.png │ │ │ └── wiimote@4x.png │ │ ├── Clean Emerald │ │ │ ├── browse.png │ │ │ ├── browse@2x.png │ │ │ ├── browse@4x.png │ │ │ ├── classic.png │ │ │ ├── classic@2x.png │ │ │ ├── classic@4x.png │ │ │ ├── config.png │ │ │ ├── config@2x.png │ │ │ ├── config@4x.png │ │ │ ├── debugger_add_breakpoint.png │ │ │ ├── debugger_add_breakpoint@2x.png │ │ │ ├── debugger_add_breakpoint@4x.png │ │ │ ├── debugger_add_memorycheck.png │ │ │ ├── debugger_add_memorycheck@2x.png │ │ │ ├── debugger_add_memorycheck@4x.png │ │ │ ├── debugger_breakpoint.png │ │ │ ├── debugger_breakpoint@2x.png │ │ │ ├── debugger_breakpoint@4x.png │ │ │ ├── debugger_clear.png │ │ │ ├── debugger_clear@2x.png │ │ │ ├── debugger_clear@4x.png │ │ │ ├── debugger_delete.png │ │ │ ├── debugger_delete@2x.png │ │ │ ├── debugger_delete@4x.png │ │ │ ├── debugger_load.png │ │ │ ├── debugger_load@2x.png │ │ │ ├── debugger_load@4x.png │ │ │ ├── debugger_save.png │ │ │ ├── debugger_save@2x.png │ │ │ ├── debugger_save@4x.png │ │ │ ├── debugger_set_pc.png │ │ │ ├── debugger_set_pc@2x.png │ │ │ ├── debugger_set_pc@4x.png │ │ │ ├── debugger_show_pc.png │ │ │ ├── debugger_show_pc@2x.png │ │ │ ├── debugger_show_pc@4x.png │ │ │ ├── debugger_skip.png │ │ │ ├── debugger_skip@2x.png │ │ │ ├── debugger_skip@4x.png │ │ │ ├── debugger_step_in.png │ │ │ ├── debugger_step_in@2x.png │ │ │ ├── debugger_step_in@4x.png │ │ │ ├── debugger_step_out.png │ │ │ ├── debugger_step_out@2x.png │ │ │ ├── debugger_step_out@4x.png │ │ │ ├── debugger_step_over.png │ │ │ ├── debugger_step_over@2x.png │ │ │ ├── debugger_step_over@4x.png │ │ │ ├── fullscreen.png │ │ │ ├── fullscreen@2x.png │ │ │ ├── fullscreen@4x.png │ │ │ ├── gcpad.png │ │ │ ├── gcpad@2x.png │ │ │ ├── gcpad@4x.png │ │ │ ├── graphics.png │ │ │ ├── graphics@2x.png │ │ │ ├── graphics@4x.png │ │ │ ├── open.png │ │ │ ├── open@2x.png │ │ │ ├── open@4x.png │ │ │ ├── pause.png │ │ │ ├── pause@2x.png │ │ │ ├── pause@4x.png │ │ │ ├── play.png │ │ │ ├── play@2x.png │ │ │ ├── play@4x.png │ │ │ ├── refresh.png │ │ │ ├── refresh@2x.png │ │ │ ├── refresh@4x.png │ │ │ ├── screenshot.png │ │ │ ├── screenshot@2x.png │ │ │ ├── screenshot@4x.png │ │ │ ├── stop.png │ │ │ ├── stop@2x.png │ │ │ ├── stop@4x.png │ │ │ ├── wiimote.png │ │ │ ├── wiimote@2x.png │ │ │ └── wiimote@4x.png │ │ ├── Clean Lite │ │ │ ├── browse.png │ │ │ ├── browse@2x.png │ │ │ ├── browse@4x.png │ │ │ ├── classic.png │ │ │ ├── classic@2x.png │ │ │ ├── classic@4x.png │ │ │ ├── config.png │ │ │ ├── config@2x.png │ │ │ ├── config@4x.png │ │ │ ├── debugger_add_breakpoint.png │ │ │ ├── debugger_add_breakpoint@2x.png │ │ │ ├── debugger_add_breakpoint@4x.png │ │ │ ├── debugger_add_memorycheck.png │ │ │ ├── debugger_add_memorycheck@2x.png │ │ │ ├── debugger_add_memorycheck@4x.png │ │ │ ├── debugger_breakpoint.png │ │ │ ├── debugger_breakpoint@2x.png │ │ │ ├── debugger_breakpoint@4x.png │ │ │ ├── debugger_clear.png │ │ │ ├── debugger_clear@2x.png │ │ │ ├── debugger_clear@4x.png │ │ │ ├── debugger_delete.png │ │ │ ├── debugger_delete@2x.png │ │ │ ├── debugger_delete@4x.png │ │ │ ├── debugger_load.png │ │ │ ├── debugger_load@2x.png │ │ │ ├── debugger_load@4x.png │ │ │ ├── debugger_save.png │ │ │ ├── debugger_save@2x.png │ │ │ ├── debugger_save@4x.png │ │ │ ├── debugger_set_pc.png │ │ │ ├── debugger_set_pc@2x.png │ │ │ ├── debugger_set_pc@4x.png │ │ │ ├── debugger_show_pc.png │ │ │ ├── debugger_show_pc@2x.png │ │ │ ├── debugger_show_pc@4x.png │ │ │ ├── debugger_skip.png │ │ │ ├── debugger_skip@2x.png │ │ │ ├── debugger_skip@4x.png │ │ │ ├── debugger_step_in.png │ │ │ ├── debugger_step_in@2x.png │ │ │ ├── debugger_step_in@4x.png │ │ │ ├── debugger_step_out.png │ │ │ ├── debugger_step_out@2x.png │ │ │ ├── debugger_step_out@4x.png │ │ │ ├── debugger_step_over.png │ │ │ ├── debugger_step_over@2x.png │ │ │ ├── debugger_step_over@4x.png │ │ │ ├── fullscreen.png │ │ │ ├── fullscreen@2x.png │ │ │ ├── fullscreen@4x.png │ │ │ ├── gcpad.png │ │ │ ├── gcpad@2x.png │ │ │ ├── gcpad@4x.png │ │ │ ├── graphics.png │ │ │ ├── graphics@2x.png │ │ │ ├── graphics@4x.png │ │ │ ├── open.png │ │ │ ├── open@2x.png │ │ │ ├── open@4x.png │ │ │ ├── pause.png │ │ │ ├── pause@2x.png │ │ │ ├── pause@4x.png │ │ │ ├── play.png │ │ │ ├── play@2x.png │ │ │ ├── play@4x.png │ │ │ ├── refresh.png │ │ │ ├── refresh@2x.png │ │ │ ├── refresh@4x.png │ │ │ ├── screenshot.png │ │ │ ├── screenshot@2x.png │ │ │ ├── screenshot@4x.png │ │ │ ├── stop.png │ │ │ ├── stop@2x.png │ │ │ ├── stop@4x.png │ │ │ ├── wiimote.png │ │ │ ├── wiimote@2x.png │ │ │ └── wiimote@4x.png │ │ ├── Clean Pink │ │ │ ├── browse.png │ │ │ ├── browse@2x.png │ │ │ ├── browse@4x.png │ │ │ ├── classic.png │ │ │ ├── classic@2x.png │ │ │ ├── classic@4x.png │ │ │ ├── config.png │ │ │ ├── config@2x.png │ │ │ ├── config@4x.png │ │ │ ├── debugger_add_breakpoint.png │ │ │ ├── debugger_add_breakpoint@2x.png │ │ │ ├── debugger_add_breakpoint@4x.png │ │ │ ├── debugger_add_memorycheck.png │ │ │ ├── debugger_add_memorycheck@2x.png │ │ │ ├── debugger_add_memorycheck@4x.png │ │ │ ├── debugger_breakpoint.png │ │ │ ├── debugger_breakpoint@2x.png │ │ │ ├── debugger_breakpoint@4x.png │ │ │ ├── debugger_clear.png │ │ │ ├── debugger_clear@2x.png │ │ │ ├── debugger_clear@4x.png │ │ │ ├── debugger_delete.png │ │ │ ├── debugger_delete@2x.png │ │ │ ├── debugger_delete@4x.png │ │ │ ├── debugger_load.png │ │ │ ├── debugger_load@2x.png │ │ │ ├── debugger_load@4x.png │ │ │ ├── debugger_save.png │ │ │ ├── debugger_save@2x.png │ │ │ ├── debugger_save@4x.png │ │ │ ├── debugger_set_pc.png │ │ │ ├── debugger_set_pc@2x.png │ │ │ ├── debugger_set_pc@4x.png │ │ │ ├── debugger_show_pc.png │ │ │ ├── debugger_show_pc@2x.png │ │ │ ├── debugger_show_pc@4x.png │ │ │ ├── debugger_skip.png │ │ │ ├── debugger_skip@2x.png │ │ │ ├── debugger_skip@4x.png │ │ │ ├── debugger_step_in.png │ │ │ ├── debugger_step_in@2x.png │ │ │ ├── debugger_step_in@4x.png │ │ │ ├── debugger_step_out.png │ │ │ ├── debugger_step_out@2x.png │ │ │ ├── debugger_step_out@4x.png │ │ │ ├── debugger_step_over.png │ │ │ ├── debugger_step_over@2x.png │ │ │ ├── debugger_step_over@4x.png │ │ │ ├── fullscreen.png │ │ │ ├── fullscreen@2x.png │ │ │ ├── fullscreen@4x.png │ │ │ ├── gcpad.png │ │ │ ├── gcpad@2x.png │ │ │ ├── gcpad@4x.png │ │ │ ├── graphics.png │ │ │ ├── graphics@2x.png │ │ │ ├── graphics@4x.png │ │ │ ├── open.png │ │ │ ├── open@2x.png │ │ │ ├── open@4x.png │ │ │ ├── pause.png │ │ │ ├── pause@2x.png │ │ │ ├── pause@4x.png │ │ │ ├── play.png │ │ │ ├── play@2x.png │ │ │ ├── play@4x.png │ │ │ ├── refresh.png │ │ │ ├── refresh@2x.png │ │ │ ├── refresh@4x.png │ │ │ ├── screenshot.png │ │ │ ├── screenshot@2x.png │ │ │ ├── screenshot@4x.png │ │ │ ├── stop.png │ │ │ ├── stop@2x.png │ │ │ ├── stop@4x.png │ │ │ ├── wiimote.png │ │ │ ├── wiimote@2x.png │ │ │ └── wiimote@4x.png │ │ └── Clean │ │ │ ├── browse.png │ │ │ ├── browse@2x.png │ │ │ ├── browse@4x.png │ │ │ ├── classic.png │ │ │ ├── classic@2x.png │ │ │ ├── classic@4x.png │ │ │ ├── config.png │ │ │ ├── config@2x.png │ │ │ ├── config@4x.png │ │ │ ├── debugger_add_breakpoint.png │ │ │ ├── debugger_add_breakpoint@2x.png │ │ │ ├── debugger_add_breakpoint@4x.png │ │ │ ├── debugger_add_memorycheck.png │ │ │ ├── debugger_add_memorycheck@2x.png │ │ │ ├── debugger_add_memorycheck@4x.png │ │ │ ├── debugger_breakpoint.png │ │ │ ├── debugger_breakpoint@2x.png │ │ │ ├── debugger_breakpoint@4x.png │ │ │ ├── debugger_clear.png │ │ │ ├── debugger_clear@2x.png │ │ │ ├── debugger_clear@4x.png │ │ │ ├── debugger_delete.png │ │ │ ├── debugger_delete@2x.png │ │ │ ├── debugger_delete@4x.png │ │ │ ├── debugger_load.png │ │ │ ├── debugger_load@2x.png │ │ │ ├── debugger_load@4x.png │ │ │ ├── debugger_save.png │ │ │ ├── debugger_save@2x.png │ │ │ ├── debugger_save@4x.png │ │ │ ├── debugger_set_pc.png │ │ │ ├── debugger_set_pc@2x.png │ │ │ ├── debugger_set_pc@4x.png │ │ │ ├── debugger_show_pc.png │ │ │ ├── debugger_show_pc@2x.png │ │ │ ├── debugger_show_pc@4x.png │ │ │ ├── debugger_skip.png │ │ │ ├── debugger_skip@2x.png │ │ │ ├── debugger_skip@4x.png │ │ │ ├── debugger_step_in.png │ │ │ ├── debugger_step_in@2x.png │ │ │ ├── debugger_step_in@4x.png │ │ │ ├── debugger_step_out.png │ │ │ ├── debugger_step_out@2x.png │ │ │ ├── debugger_step_out@4x.png │ │ │ ├── debugger_step_over.png │ │ │ ├── debugger_step_over@2x.png │ │ │ ├── debugger_step_over@4x.png │ │ │ ├── fullscreen.png │ │ │ ├── fullscreen@2x.png │ │ │ ├── fullscreen@4x.png │ │ │ ├── gcpad.png │ │ │ ├── gcpad@2x.png │ │ │ ├── gcpad@4x.png │ │ │ ├── graphics.png │ │ │ ├── graphics@2x.png │ │ │ ├── graphics@4x.png │ │ │ ├── open.png │ │ │ ├── open@2x.png │ │ │ ├── open@4x.png │ │ │ ├── pause.png │ │ │ ├── pause@2x.png │ │ │ ├── pause@4x.png │ │ │ ├── play.png │ │ │ ├── play@2x.png │ │ │ ├── play@4x.png │ │ │ ├── refresh.png │ │ │ ├── refresh@2x.png │ │ │ ├── refresh@4x.png │ │ │ ├── screenshot.png │ │ │ ├── screenshot@2x.png │ │ │ ├── screenshot@4x.png │ │ │ ├── stop.png │ │ │ ├── stop@2x.png │ │ │ ├── stop@4x.png │ │ │ ├── wiimote.png │ │ │ ├── wiimote@2x.png │ │ │ └── wiimote@4x.png │ ├── Wii │ │ └── shared2 │ │ │ └── wc24 │ │ │ ├── mbox │ │ │ ├── Readme.txt │ │ │ ├── wc24recv.ctl │ │ │ ├── wc24recv.mbx │ │ │ ├── wc24send.ctl │ │ │ └── wc24send.mbx │ │ │ ├── misc.bin │ │ │ ├── nwc24dl.bin │ │ │ ├── nwc24fl.bin │ │ │ ├── nwc24fls.bin │ │ │ ├── nwc24msg.cbk │ │ │ └── nwc24msg.cfg │ ├── codehandler.bin │ ├── totaldb.dsy │ ├── wiitdb-de.txt │ ├── wiitdb-en.txt │ ├── wiitdb-es.txt │ ├── wiitdb-fr.txt │ ├── wiitdb-it.txt │ ├── wiitdb-ja.txt │ ├── wiitdb-ko.txt │ ├── wiitdb-nl.txt │ ├── wiitdb-pt.txt │ ├── wiitdb-ru.txt │ ├── wiitdb-zh_CN.txt │ └── wiitdb-zh_TW.txt ├── cpack_package_description.txt ├── dolphin-emu-nogui.6 ├── dolphin-emu.6 ├── dolphin-emu.desktop ├── dolphin-emu.png ├── dolphin-emu.svg └── license.txt ├── Externals ├── .gitignore ├── Bochs_disasm │ ├── Bochs_disasm.vcxproj │ ├── CMakeLists.txt │ ├── Makefile.in │ ├── config.h │ ├── dis_decode.cc │ ├── dis_groups.cc │ ├── dis_tables.h │ ├── dis_tables.inc │ ├── dis_tables_avx.inc │ ├── dis_tables_sse.inc │ ├── dis_tables_x87.inc │ ├── dis_tables_xop.inc │ ├── disasm.h │ ├── opcodes.inc │ ├── resolve.cc │ ├── stdafx.cc │ ├── stdafx.h │ └── syntax.cc ├── FreeSurround │ ├── CMakeLists.txt │ ├── FreeSurround.vcxproj │ ├── FreeSurround.vcxproj.filters │ ├── include │ │ └── FreeSurround │ │ │ ├── ChannelMaps.h │ │ │ ├── FreeSurroundDecoder.h │ │ │ ├── KissFFT.h │ │ │ ├── KissFFTR.h │ │ │ └── _KissFFTGuts.h │ └── source │ │ ├── ChannelMaps.cpp │ │ ├── FreeSurroundDecoder.cpp │ │ ├── KissFFT.cpp │ │ └── KissFFTR.cpp ├── LZO │ ├── CMakeLists.txt │ ├── LZO.vcxproj │ ├── README.LZO │ ├── lzo │ │ └── lzo1x.h │ ├── lzoconf.h │ ├── lzodefs.h │ ├── minilzo.c │ └── minilzo.h ├── MoltenVK │ ├── LICENSE │ ├── libvulkan.dylib │ └── version.txt ├── OpenAL │ └── include │ │ ├── al.h │ │ ├── alc.h │ │ ├── alext.h │ │ ├── efx-creative.h │ │ ├── efx-presets.h │ │ └── efx.h ├── SFML │ ├── CMakeLists.txt │ ├── build │ │ └── vc2010 │ │ │ ├── SFML_Network.vcxproj │ │ │ └── SFML_Network.vcxproj.filters │ ├── include │ │ └── SFML │ │ │ ├── Config.hpp │ │ │ ├── Network.hpp │ │ │ ├── Network │ │ │ ├── Export.hpp │ │ │ ├── Http.hpp │ │ │ ├── IPAddress.hpp │ │ │ ├── Packet.hpp │ │ │ ├── Socket.hpp │ │ │ ├── SocketHandle.hpp │ │ │ ├── SocketSelector.hpp │ │ │ ├── TcpListener.hpp │ │ │ ├── TcpSocket.hpp │ │ │ └── UdpSocket.hpp │ │ │ ├── System.hpp │ │ │ └── System │ │ │ ├── Err.hpp │ │ │ ├── Export.hpp │ │ │ ├── NonCopyable.hpp │ │ │ ├── String.hpp │ │ │ ├── String.inl │ │ │ ├── Time.hpp │ │ │ ├── Utf.hpp │ │ │ └── Utf.inl │ ├── license.txt │ └── src │ │ └── SFML │ │ ├── Network │ │ ├── Http.cpp │ │ ├── IPAddress.cpp │ │ ├── Packet.cpp │ │ ├── Socket.cpp │ │ ├── SocketImpl.hpp │ │ ├── SocketSelector.cpp │ │ ├── TcpListener.cpp │ │ ├── TcpSocket.cpp │ │ ├── UdpSocket.cpp │ │ ├── Unix │ │ │ ├── SocketImpl.cpp │ │ │ └── SocketImpl.hpp │ │ └── Win32 │ │ │ ├── SocketImpl.cpp │ │ │ └── SocketImpl.hpp │ │ └── System │ │ ├── Err.cpp │ │ ├── String.cpp │ │ └── Time.cpp ├── Vulkan │ └── Include │ │ └── vulkan │ │ ├── vk_icd.h │ │ ├── vk_layer.h │ │ ├── vk_platform.h │ │ ├── vk_sdk_platform.h │ │ ├── vulkan.h │ │ ├── vulkan.hpp │ │ ├── vulkan_android.h │ │ ├── vulkan_core.h │ │ ├── vulkan_fuchsia.h │ │ ├── vulkan_ggp.h │ │ ├── vulkan_ios.h │ │ ├── vulkan_macos.h │ │ ├── vulkan_metal.h │ │ ├── vulkan_vi.h │ │ ├── vulkan_wayland.h │ │ ├── vulkan_win32.h │ │ ├── vulkan_xcb.h │ │ ├── vulkan_xlib.h │ │ └── vulkan_xlib_xrandr.h ├── cpp-optparse │ ├── CMakeLists.txt │ ├── OptionParser.cpp │ ├── OptionParser.h │ └── cpp-optparse.vcxproj ├── cubeb │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── Config.cmake.in │ ├── INSTALL.md │ ├── LICENSE │ ├── README.md │ ├── cmake │ │ └── sanitizers-cmake │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── cmake │ │ │ ├── FindASan.cmake │ │ │ ├── FindMSan.cmake │ │ │ ├── FindSanitizers.cmake │ │ │ ├── FindTSan.cmake │ │ │ ├── FindUBSan.cmake │ │ │ ├── asan-wrapper │ │ │ └── sanitize-helpers.cmake │ ├── cubeb.supp │ ├── include │ │ └── cubeb │ │ │ └── cubeb.h │ ├── msvc │ │ ├── cubeb.vcxproj │ │ ├── cubeb.vcxproj.filters │ │ └── cubeb_export.h │ └── src │ │ ├── android │ │ ├── audiotrack_definitions.h │ │ └── sles_definitions.h │ │ ├── cubeb-internal.h │ │ ├── cubeb-sles.h │ │ ├── cubeb-speex-resampler.h │ │ ├── cubeb.c │ │ ├── cubeb_alsa.c │ │ ├── cubeb_array_queue.h │ │ ├── cubeb_assert.h │ │ ├── cubeb_audiotrack.c │ │ ├── cubeb_audiounit.cpp │ │ ├── cubeb_jack.cpp │ │ ├── cubeb_kai.c │ │ ├── cubeb_log.cpp │ │ ├── cubeb_log.h │ │ ├── cubeb_mixer.cpp │ │ ├── cubeb_mixer.h │ │ ├── cubeb_opensl.c │ │ ├── cubeb_osx_run_loop.cpp │ │ ├── cubeb_osx_run_loop.h │ │ ├── cubeb_panner.cpp │ │ ├── cubeb_panner.h │ │ ├── cubeb_pulse.c │ │ ├── cubeb_resampler.cpp │ │ ├── cubeb_resampler.h │ │ ├── cubeb_resampler_internal.h │ │ ├── cubeb_ring_array.h │ │ ├── cubeb_ringbuffer.h │ │ ├── cubeb_sndio.c │ │ ├── cubeb_strings.c │ │ ├── cubeb_strings.h │ │ ├── cubeb_utils.h │ │ ├── cubeb_utils_unix.h │ │ ├── cubeb_utils_win.h │ │ ├── cubeb_wasapi.cpp │ │ ├── cubeb_winmm.c │ │ └── speex │ │ ├── arch.h │ │ ├── fixed_generic.h │ │ ├── resample.c │ │ ├── resample_neon.h │ │ ├── resample_sse.h │ │ ├── speex_config_types.h │ │ ├── speex_resampler.h │ │ └── stack_alloc.h ├── curl │ ├── CMakeLists.txt │ ├── COPYING │ ├── curl.vcxproj │ ├── include │ │ ├── README │ │ └── curl │ │ │ ├── Makefile.am │ │ │ ├── Makefile.in │ │ │ ├── curl.h │ │ │ ├── curlbuild.h │ │ │ ├── curlbuild.h.cmake │ │ │ ├── curlbuild.h.in │ │ │ ├── curlrules.h │ │ │ ├── curlver.h │ │ │ ├── easy.h │ │ │ ├── mprintf.h │ │ │ ├── multi.h │ │ │ ├── stdcheaders.h │ │ │ └── typecheck-gcc.h │ └── lib │ │ ├── CMakeLists.txt │ │ ├── amigaos.c │ │ ├── amigaos.h │ │ ├── arpa_telnet.h │ │ ├── asyn-ares.c │ │ ├── asyn-thread.c │ │ ├── asyn.h │ │ ├── base64.c │ │ ├── checksrc.pl │ │ ├── config-amigaos.h │ │ ├── config-dos.h │ │ ├── config-mac.h │ │ ├── config-os400.h │ │ ├── config-riscos.h │ │ ├── config-symbian.h │ │ ├── config-tpf.h │ │ ├── config-vxworks.h │ │ ├── config-win32.h │ │ ├── config-win32ce.h │ │ ├── conncache.c │ │ ├── conncache.h │ │ ├── connect.c │ │ ├── connect.h │ │ ├── content_encoding.c │ │ ├── content_encoding.h │ │ ├── cookie.c │ │ ├── cookie.h │ │ ├── curl_addrinfo.c │ │ ├── curl_addrinfo.h │ │ ├── curl_base64.h │ │ ├── curl_config.h │ │ ├── curl_config.h.cmake │ │ ├── curl_config.h.in │ │ ├── curl_des.c │ │ ├── curl_des.h │ │ ├── curl_endian.c │ │ ├── curl_endian.h │ │ ├── curl_fnmatch.c │ │ ├── curl_fnmatch.h │ │ ├── curl_gethostname.c │ │ ├── curl_gethostname.h │ │ ├── curl_gssapi.c │ │ ├── curl_gssapi.h │ │ ├── curl_hmac.h │ │ ├── curl_ldap.h │ │ ├── curl_md4.h │ │ ├── curl_md5.h │ │ ├── curl_memory.h │ │ ├── curl_memrchr.c │ │ ├── curl_memrchr.h │ │ ├── curl_multibyte.c │ │ ├── curl_multibyte.h │ │ ├── curl_ntlm_core.c │ │ ├── curl_ntlm_core.h │ │ ├── curl_ntlm_wb.c │ │ ├── curl_ntlm_wb.h │ │ ├── curl_printf.h │ │ ├── curl_rtmp.c │ │ ├── curl_rtmp.h │ │ ├── curl_sasl.c │ │ ├── curl_sasl.h │ │ ├── curl_sec.h │ │ ├── curl_setup.h │ │ ├── curl_setup_once.h │ │ ├── curl_sspi.c │ │ ├── curl_sspi.h │ │ ├── curl_threads.c │ │ ├── curl_threads.h │ │ ├── curlx.h │ │ ├── dict.c │ │ ├── dict.h │ │ ├── dotdot.c │ │ ├── dotdot.h │ │ ├── easy.c │ │ ├── easyif.h │ │ ├── escape.c │ │ ├── escape.h │ │ ├── file.c │ │ ├── file.h │ │ ├── fileinfo.c │ │ ├── fileinfo.h │ │ ├── firefox-db2pem.sh │ │ ├── formdata.c │ │ ├── formdata.h │ │ ├── ftp.c │ │ ├── ftp.h │ │ ├── ftplistparser.c │ │ ├── ftplistparser.h │ │ ├── getenv.c │ │ ├── getinfo.c │ │ ├── getinfo.h │ │ ├── gopher.c │ │ ├── gopher.h │ │ ├── hash.c │ │ ├── hash.h │ │ ├── hmac.c │ │ ├── hostasyn.c │ │ ├── hostcheck.c │ │ ├── hostcheck.h │ │ ├── hostip.c │ │ ├── hostip.h │ │ ├── hostip4.c │ │ ├── hostip6.c │ │ ├── hostsyn.c │ │ ├── http.c │ │ ├── http.h │ │ ├── http2.c │ │ ├── http2.h │ │ ├── http_chunks.c │ │ ├── http_chunks.h │ │ ├── http_digest.c │ │ ├── http_digest.h │ │ ├── http_negotiate.c │ │ ├── http_negotiate.h │ │ ├── http_ntlm.c │ │ ├── http_ntlm.h │ │ ├── http_proxy.c │ │ ├── http_proxy.h │ │ ├── idn_win32.c │ │ ├── if2ip.c │ │ ├── if2ip.h │ │ ├── imap.c │ │ ├── imap.h │ │ ├── inet_ntop.c │ │ ├── inet_ntop.h │ │ ├── inet_pton.c │ │ ├── inet_pton.h │ │ ├── krb5.c │ │ ├── ldap.c │ │ ├── libcurl.plist │ │ ├── libcurl.rc │ │ ├── libcurl.vers.in │ │ ├── llist.c │ │ ├── llist.h │ │ ├── makefile.amiga │ │ ├── makefile.dj │ │ ├── md4.c │ │ ├── md5.c │ │ ├── memdebug.c │ │ ├── memdebug.h │ │ ├── mk-ca-bundle.pl │ │ ├── mk-ca-bundle.vbs │ │ ├── mprintf.c │ │ ├── multi.c │ │ ├── multihandle.h │ │ ├── multiif.h │ │ ├── netrc.c │ │ ├── netrc.h │ │ ├── non-ascii.c │ │ ├── non-ascii.h │ │ ├── nonblock.c │ │ ├── nonblock.h │ │ ├── nwlib.c │ │ ├── nwos.c │ │ ├── objnames-test08.sh │ │ ├── objnames-test10.sh │ │ ├── objnames.inc │ │ ├── openldap.c │ │ ├── parsedate.c │ │ ├── parsedate.h │ │ ├── pingpong.c │ │ ├── pingpong.h │ │ ├── pipeline.c │ │ ├── pipeline.h │ │ ├── pop3.c │ │ ├── pop3.h │ │ ├── progress.c │ │ ├── progress.h │ │ ├── rawstr.c │ │ ├── rawstr.h │ │ ├── rtsp.c │ │ ├── rtsp.h │ │ ├── security.c │ │ ├── select.c │ │ ├── select.h │ │ ├── sendf.c │ │ ├── sendf.h │ │ ├── setup-os400.h │ │ ├── setup-vms.h │ │ ├── share.c │ │ ├── share.h │ │ ├── sigpipe.h │ │ ├── slist.c │ │ ├── slist.h │ │ ├── smb.c │ │ ├── smb.h │ │ ├── smtp.c │ │ ├── smtp.h │ │ ├── sockaddr.h │ │ ├── socks.c │ │ ├── socks.h │ │ ├── socks_gssapi.c │ │ ├── socks_sspi.c │ │ ├── speedcheck.c │ │ ├── speedcheck.h │ │ ├── splay.c │ │ ├── splay.h │ │ ├── ssh.c │ │ ├── ssh.h │ │ ├── strdup.c │ │ ├── strdup.h │ │ ├── strequal.c │ │ ├── strequal.h │ │ ├── strerror.c │ │ ├── strerror.h │ │ ├── strtok.c │ │ ├── strtok.h │ │ ├── strtoofft.c │ │ ├── strtoofft.h │ │ ├── system_win32.c │ │ ├── system_win32.h │ │ ├── telnet.c │ │ ├── telnet.h │ │ ├── tftp.c │ │ ├── tftp.h │ │ ├── timeval.c │ │ ├── timeval.h │ │ ├── transfer.c │ │ ├── transfer.h │ │ ├── url.c │ │ ├── url.h │ │ ├── urldata.h │ │ ├── vauth │ │ ├── cleartext.c │ │ ├── cram.c │ │ ├── digest.c │ │ ├── digest.h │ │ ├── digest_sspi.c │ │ ├── krb5_gssapi.c │ │ ├── krb5_sspi.c │ │ ├── ntlm.c │ │ ├── ntlm.h │ │ ├── ntlm_sspi.c │ │ ├── oauth2.c │ │ ├── spnego_gssapi.c │ │ ├── spnego_sspi.c │ │ ├── vauth.c │ │ └── vauth.h │ │ ├── version.c │ │ ├── vtls │ │ ├── axtls.c │ │ ├── axtls.h │ │ ├── cyassl.c │ │ ├── cyassl.h │ │ ├── darwinssl.c │ │ ├── darwinssl.h │ │ ├── gskit.c │ │ ├── gskit.h │ │ ├── gtls.c │ │ ├── gtls.h │ │ ├── mbedtls.c │ │ ├── mbedtls.h │ │ ├── nss.c │ │ ├── nssg.h │ │ ├── openssl.c │ │ ├── openssl.h │ │ ├── polarssl.c │ │ ├── polarssl.h │ │ ├── polarssl_threadlock.c │ │ ├── polarssl_threadlock.h │ │ ├── schannel.c │ │ ├── schannel.h │ │ ├── vtls.c │ │ └── vtls.h │ │ ├── warnless.c │ │ ├── warnless.h │ │ ├── wildcard.c │ │ ├── wildcard.h │ │ ├── x509asn1.c │ │ └── x509asn1.h ├── discord-rpc │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── build.py │ ├── include │ │ ├── discord_register.h │ │ └── discord_rpc.h │ ├── src │ │ ├── CMakeLists.txt │ │ ├── backoff.h │ │ ├── connection.h │ │ ├── connection_unix.cpp │ │ ├── connection_win.cpp │ │ ├── discord-rpc.vcxproj │ │ ├── discord_register_linux.cpp │ │ ├── discord_register_osx.m │ │ ├── discord_register_win.cpp │ │ ├── discord_rpc.cpp │ │ ├── dllmain.cpp │ │ ├── msg_queue.h │ │ ├── rpc_connection.cpp │ │ ├── rpc_connection.h │ │ ├── serialization.cpp │ │ └── serialization.h │ └── thirdparty │ │ └── include │ │ └── rapidjson │ │ ├── allocators.h │ │ ├── document.h │ │ ├── encodedstream.h │ │ ├── encodings.h │ │ ├── error │ │ ├── en.h │ │ └── error.h │ │ ├── filereadstream.h │ │ ├── filewritestream.h │ │ ├── fwd.h │ │ ├── internal │ │ ├── biginteger.h │ │ ├── diyfp.h │ │ ├── dtoa.h │ │ ├── ieee754.h │ │ ├── itoa.h │ │ ├── meta.h │ │ ├── pow10.h │ │ ├── regex.h │ │ ├── stack.h │ │ ├── strfunc.h │ │ ├── strtod.h │ │ └── swap.h │ │ ├── istreamwrapper.h │ │ ├── memorybuffer.h │ │ ├── memorystream.h │ │ ├── msinttypes │ │ ├── inttypes.h │ │ └── stdint.h │ │ ├── ostreamwrapper.h │ │ ├── pointer.h │ │ ├── prettywriter.h │ │ ├── rapidjson.h │ │ ├── reader.h │ │ ├── schema.h │ │ ├── stream.h │ │ ├── stringbuffer.h │ │ └── writer.h ├── ed25519 │ ├── CMakeLists.txt │ ├── add_scalar.c │ ├── ed25519.h │ ├── ed25519.vcxproj │ ├── ed25519.vcxproj.filters │ ├── fe.c │ ├── fe.h │ ├── fixedint.h │ ├── ge.c │ ├── ge.h │ ├── key_exchange.c │ ├── keypair.c │ ├── license.txt │ ├── precomp_data.h │ ├── sc.c │ ├── sc.h │ ├── seed.c │ ├── sha512.c │ ├── sha512.h │ ├── sign.c │ └── verify.c ├── enet │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── Doxyfile │ ├── DoxygenLayout.xml │ ├── LICENSE │ ├── Makefile.am │ ├── README │ ├── callbacks.c │ ├── compress.c │ ├── configure.ac │ ├── docs │ │ ├── FAQ.dox │ │ ├── design.dox │ │ ├── install.dox │ │ ├── license.dox │ │ ├── mainpage.dox │ │ └── tutorial.dox │ ├── enet.dsp │ ├── enet.vcxproj │ ├── enet.vcxproj.filters │ ├── enet_dll.cbp │ ├── host.c │ ├── include │ │ └── enet │ │ │ ├── callbacks.h │ │ │ ├── enet.h │ │ │ ├── list.h │ │ │ ├── protocol.h │ │ │ ├── time.h │ │ │ ├── types.h │ │ │ ├── unix.h │ │ │ ├── utility.h │ │ │ └── win32.h │ ├── libenet.pc.in │ ├── list.c │ ├── m4 │ │ └── .keep │ ├── packet.c │ ├── peer.c │ ├── premake4.lua │ ├── protocol.c │ ├── unix.c │ └── win32.c ├── ffmpeg │ ├── include │ │ ├── libavcodec │ │ │ ├── avcodec.h │ │ │ ├── avdct.h │ │ │ ├── avfft.h │ │ │ ├── d3d11va.h │ │ │ ├── dirac.h │ │ │ ├── dv_profile.h │ │ │ ├── dxva2.h │ │ │ ├── jni.h │ │ │ ├── mediacodec.h │ │ │ ├── qsv.h │ │ │ ├── vaapi.h │ │ │ ├── vda.h │ │ │ ├── vdpau.h │ │ │ ├── version.h │ │ │ ├── videotoolbox.h │ │ │ ├── vorbis_parser.h │ │ │ └── xvmc.h │ │ ├── libavformat │ │ │ ├── avformat.h │ │ │ ├── avio.h │ │ │ └── version.h │ │ ├── libavutil │ │ │ ├── adler32.h │ │ │ ├── aes.h │ │ │ ├── aes_ctr.h │ │ │ ├── attributes.h │ │ │ ├── audio_fifo.h │ │ │ ├── avassert.h │ │ │ ├── avconfig.h │ │ │ ├── avstring.h │ │ │ ├── avutil.h │ │ │ ├── base64.h │ │ │ ├── blowfish.h │ │ │ ├── bprint.h │ │ │ ├── bswap.h │ │ │ ├── buffer.h │ │ │ ├── camellia.h │ │ │ ├── cast5.h │ │ │ ├── channel_layout.h │ │ │ ├── common.h │ │ │ ├── cpu.h │ │ │ ├── crc.h │ │ │ ├── des.h │ │ │ ├── dict.h │ │ │ ├── display.h │ │ │ ├── downmix_info.h │ │ │ ├── error.h │ │ │ ├── eval.h │ │ │ ├── ffversion.h │ │ │ ├── fifo.h │ │ │ ├── file.h │ │ │ ├── frame.h │ │ │ ├── hash.h │ │ │ ├── hmac.h │ │ │ ├── hwcontext.h │ │ │ ├── hwcontext_cuda.h │ │ │ ├── hwcontext_dxva2.h │ │ │ ├── hwcontext_qsv.h │ │ │ ├── hwcontext_vaapi.h │ │ │ ├── hwcontext_vdpau.h │ │ │ ├── imgutils.h │ │ │ ├── intfloat.h │ │ │ ├── intreadwrite.h │ │ │ ├── lfg.h │ │ │ ├── log.h │ │ │ ├── macros.h │ │ │ ├── mastering_display_metadata.h │ │ │ ├── mathematics.h │ │ │ ├── md5.h │ │ │ ├── mem.h │ │ │ ├── motion_vector.h │ │ │ ├── murmur3.h │ │ │ ├── opt.h │ │ │ ├── parseutils.h │ │ │ ├── pixdesc.h │ │ │ ├── pixelutils.h │ │ │ ├── pixfmt.h │ │ │ ├── random_seed.h │ │ │ ├── rational.h │ │ │ ├── rc4.h │ │ │ ├── replaygain.h │ │ │ ├── ripemd.h │ │ │ ├── samplefmt.h │ │ │ ├── sha.h │ │ │ ├── sha512.h │ │ │ ├── stereo3d.h │ │ │ ├── tea.h │ │ │ ├── threadmessage.h │ │ │ ├── time.h │ │ │ ├── timecode.h │ │ │ ├── timestamp.h │ │ │ ├── tree.h │ │ │ ├── twofish.h │ │ │ ├── version.h │ │ │ └── xtea.h │ │ ├── libswresample │ │ │ ├── swresample.h │ │ │ └── version.h │ │ └── libswscale │ │ │ ├── swscale.h │ │ │ └── version.h │ └── lib │ │ ├── avcodec.lib │ │ ├── avformat.lib │ │ ├── avutil.lib │ │ ├── swresample.lib │ │ └── swscale.lib ├── fmt │ ├── .gitignore │ ├── CMakeLists.txt │ ├── CONTRIBUTING.rst │ ├── ChangeLog.rst │ ├── LICENSE.rst │ ├── README.rst │ ├── include │ │ └── fmt │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── core.h │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── locale.h │ │ │ ├── ostream.h │ │ │ ├── posix.h │ │ │ ├── printf.h │ │ │ ├── ranges.h │ │ │ └── time.h │ ├── src │ │ ├── format.cc │ │ └── posix.cc │ └── support │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── README │ │ ├── appveyor-build.py │ │ ├── appveyor.yml │ │ ├── build.gradle │ │ ├── cmake │ │ ├── FindSetEnv.cmake │ │ ├── cxx14.cmake │ │ ├── fmt-config.cmake.in │ │ ├── fmt.pc.in │ │ └── run-cmake.bat │ │ ├── compute-powers.py │ │ ├── docopt.py │ │ ├── fmt.pro │ │ ├── manage.py │ │ ├── rst2md.py │ │ ├── rtd │ │ ├── conf.py │ │ ├── index.rst │ │ └── theme │ │ │ ├── layout.html │ │ │ └── theme.conf │ │ ├── travis-build.py │ │ └── update-coverity-branch.py ├── gettext │ ├── libgettextlib.dll │ ├── libgettextsrc.dll │ ├── libiconv2.dll │ ├── libintl3.dll │ └── msgfmt.exe ├── glslang │ ├── .appveyor.yml │ ├── .clang-format │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── CMakeLists.txt.dist │ ├── ChooseMSVCCRT.cmake │ ├── External │ │ └── CMakeLists.txt │ ├── OGLCompilersDLL │ │ ├── CMakeLists.txt │ │ ├── InitializeDll.cpp │ │ └── InitializeDll.h │ ├── README-spirv-remap.txt │ ├── README.md │ ├── SPIRV │ │ ├── CMakeLists.txt │ │ ├── GLSL.ext.AMD.h │ │ ├── GLSL.ext.EXT.h │ │ ├── GLSL.ext.KHR.h │ │ ├── GLSL.ext.NV.h │ │ ├── GLSL.std.450.h │ │ ├── GlslangToSpv.cpp │ │ ├── GlslangToSpv.h │ │ ├── InReadableOrder.cpp │ │ ├── Logger.cpp │ │ ├── Logger.h │ │ ├── SPVRemapper.cpp │ │ ├── SPVRemapper.h │ │ ├── SpvBuilder.cpp │ │ ├── SpvBuilder.h │ │ ├── bitutils.h │ │ ├── disassemble.cpp │ │ ├── disassemble.h │ │ ├── doc.cpp │ │ ├── doc.h │ │ ├── hex_float.h │ │ ├── spirv.hpp │ │ └── spvIR.h │ ├── StandAlone │ │ ├── CMakeLists.txt │ │ ├── DirStackFileIncluder.h │ │ ├── ResourceLimits.cpp │ │ ├── ResourceLimits.h │ │ ├── StandAlone.cpp │ │ ├── Worklist.h │ │ └── spirv-remap.cpp │ ├── glslang.vcxproj │ ├── glslang.vcxproj.filters │ ├── glslang │ │ ├── CMakeLists.txt │ │ ├── GenericCodeGen │ │ │ ├── CodeGen.cpp │ │ │ └── Link.cpp │ │ ├── Include │ │ │ ├── BaseTypes.h │ │ │ ├── Common.h │ │ │ ├── ConstantUnion.h │ │ │ ├── InfoSink.h │ │ │ ├── InitializeGlobals.h │ │ │ ├── PoolAlloc.h │ │ │ ├── ResourceLimits.h │ │ │ ├── ShHandle.h │ │ │ ├── Types.h │ │ │ ├── arrays.h │ │ │ ├── intermediate.h │ │ │ ├── revision.h │ │ │ └── revision.template │ │ ├── MachineIndependent │ │ │ ├── Constant.cpp │ │ │ ├── InfoSink.cpp │ │ │ ├── Initialize.cpp │ │ │ ├── Initialize.h │ │ │ ├── IntermTraverse.cpp │ │ │ ├── Intermediate.cpp │ │ │ ├── LiveTraverser.h │ │ │ ├── ParseContextBase.cpp │ │ │ ├── ParseHelper.cpp │ │ │ ├── ParseHelper.h │ │ │ ├── PoolAlloc.cpp │ │ │ ├── RemoveTree.cpp │ │ │ ├── RemoveTree.h │ │ │ ├── Scan.cpp │ │ │ ├── Scan.h │ │ │ ├── ScanContext.h │ │ │ ├── ShaderLang.cpp │ │ │ ├── SymbolTable.cpp │ │ │ ├── SymbolTable.h │ │ │ ├── Versions.cpp │ │ │ ├── Versions.h │ │ │ ├── attribute.cpp │ │ │ ├── attribute.h │ │ │ ├── gl_types.h │ │ │ ├── glslang.y │ │ │ ├── glslang_tab.cpp │ │ │ ├── glslang_tab.cpp.h │ │ │ ├── intermOut.cpp │ │ │ ├── iomapper.cpp │ │ │ ├── iomapper.h │ │ │ ├── limits.cpp │ │ │ ├── linkValidate.cpp │ │ │ ├── localintermediate.h │ │ │ ├── parseConst.cpp │ │ │ ├── parseVersions.h │ │ │ ├── preprocessor │ │ │ │ ├── Pp.cpp │ │ │ │ ├── PpAtom.cpp │ │ │ │ ├── PpContext.cpp │ │ │ │ ├── PpContext.h │ │ │ │ ├── PpScanner.cpp │ │ │ │ ├── PpTokens.cpp │ │ │ │ └── PpTokens.h │ │ │ ├── propagateNoContraction.cpp │ │ │ ├── propagateNoContraction.h │ │ │ ├── reflection.cpp │ │ │ └── reflection.h │ │ ├── OSDependent │ │ │ ├── Unix │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── ossource.cpp │ │ │ ├── Windows │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── main.cpp │ │ │ │ └── ossource.cpp │ │ │ └── osinclude.h │ │ ├── Public │ │ │ └── ShaderLang.h │ │ └── updateGrammar │ ├── gtests │ │ ├── AST.FromFile.cpp │ │ ├── BuiltInResource.FromFile.cpp │ │ ├── CMakeLists.txt │ │ ├── Config.FromFile.cpp │ │ ├── HexFloat.cpp │ │ ├── Hlsl.FromFile.cpp │ │ ├── Initializer.h │ │ ├── Link.FromFile.Vk.cpp │ │ ├── Link.FromFile.cpp │ │ ├── Pp.FromFile.cpp │ │ ├── README.md │ │ ├── Remap.FromFile.cpp │ │ ├── Settings.cpp │ │ ├── Settings.h │ │ ├── Spv.FromFile.cpp │ │ ├── TestFixture.cpp │ │ ├── TestFixture.h │ │ └── main.cpp │ ├── hlsl │ │ ├── CMakeLists.txt │ │ ├── hlslAttributes.cpp │ │ ├── hlslAttributes.h │ │ ├── hlslGrammar.cpp │ │ ├── hlslGrammar.h │ │ ├── hlslOpMap.cpp │ │ ├── hlslOpMap.h │ │ ├── hlslParseHelper.cpp │ │ ├── hlslParseHelper.h │ │ ├── hlslParseables.cpp │ │ ├── hlslParseables.h │ │ ├── hlslScanContext.cpp │ │ ├── hlslScanContext.h │ │ ├── hlslTokenStream.cpp │ │ ├── hlslTokenStream.h │ │ └── hlslTokens.h │ ├── known_good.json │ ├── known_good_khr.json │ ├── make-revision │ └── update_glslang_sources.py ├── gtest │ ├── CMakeLists.txt │ ├── LICENSE │ ├── cmake │ │ ├── gtest.pc.in │ │ ├── gtest_main.pc.in │ │ └── internal_utils.cmake │ ├── include │ │ └── gtest │ │ │ ├── gtest-death-test.h │ │ │ ├── gtest-message.h │ │ │ ├── gtest-param-test.h │ │ │ ├── gtest-param-test.h.pump │ │ │ ├── gtest-printers.h │ │ │ ├── gtest-spi.h │ │ │ ├── gtest-test-part.h │ │ │ ├── gtest-typed-test.h │ │ │ ├── gtest.h │ │ │ ├── gtest_pred_impl.h │ │ │ ├── gtest_prod.h │ │ │ └── internal │ │ │ ├── custom │ │ │ ├── gtest-port.h │ │ │ ├── gtest-printers.h │ │ │ └── gtest.h │ │ │ ├── gtest-death-test-internal.h │ │ │ ├── gtest-filepath.h │ │ │ ├── gtest-internal.h │ │ │ ├── gtest-linked_ptr.h │ │ │ ├── gtest-param-util-generated.h │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ ├── gtest-param-util.h │ │ │ ├── gtest-port-arch.h │ │ │ ├── gtest-port.h │ │ │ ├── gtest-string.h │ │ │ ├── gtest-tuple.h │ │ │ ├── gtest-tuple.h.pump │ │ │ ├── gtest-type-util.h │ │ │ └── gtest-type-util.h.pump │ └── src │ │ ├── gtest-all.cc │ │ ├── gtest-death-test.cc │ │ ├── gtest-filepath.cc │ │ ├── gtest-internal-inl.h │ │ ├── gtest-port.cc │ │ ├── gtest-printers.cc │ │ ├── gtest-test-part.cc │ │ ├── gtest-typed-test.cc │ │ ├── gtest.cc │ │ └── gtest_main.cc ├── hidapi │ ├── .gitattributes │ ├── AUTHORS.txt │ ├── CMakeLists.txt │ ├── HACKING.txt │ ├── LICENSE-bsd.txt │ ├── LICENSE-gpl3.txt │ ├── LICENSE-orig.txt │ ├── LICENSE.txt │ ├── README.txt │ ├── applied_patches │ │ ├── 0001-macOS-Use-unique-IDs-for-HID-paths.patch │ │ └── 0002-macOS-Add-errno-setting-in-set_report-HID.patch │ ├── hidapi │ │ └── hidapi.h │ ├── libusb │ │ └── hid.c │ ├── linux │ │ ├── README.txt │ │ └── hid.c │ ├── mac │ │ └── hid.c │ └── windows │ │ ├── hid.c │ │ ├── hidapi.vcproj │ │ └── hidtest.vcproj ├── imgui │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── imconfig.h │ ├── imgui.cpp │ ├── imgui.h │ ├── imgui.vcxproj │ ├── imgui_draw.cpp │ ├── imgui_internal.h │ ├── imgui_widgets.cpp │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── libiconv-1.14 │ ├── .gitattributes │ ├── CMakeLists.txt │ ├── config.h │ ├── include │ │ ├── export.h │ │ └── iconv.h │ ├── lib │ │ ├── aliases.h │ │ ├── aliases2.h │ │ ├── aliases_aix.h │ │ ├── aliases_aix_sysaix.h │ │ ├── aliases_dos.h │ │ ├── aliases_extra.h │ │ ├── aliases_osf1.h │ │ ├── aliases_osf1_sysosf1.h │ │ ├── aliases_sysaix.h │ │ ├── aliases_syshpux.h │ │ ├── aliases_sysosf1.h │ │ ├── aliases_syssolaris.h │ │ ├── armscii_8.h │ │ ├── ascii.h │ │ ├── atarist.h │ │ ├── big5.h │ │ ├── big5_2003.h │ │ ├── big5hkscs1999.h │ │ ├── big5hkscs2001.h │ │ ├── big5hkscs2004.h │ │ ├── big5hkscs2008.h │ │ ├── c99.h │ │ ├── canonical.h │ │ ├── canonical_aix.h │ │ ├── canonical_aix_sysaix.h │ │ ├── canonical_dos.h │ │ ├── canonical_extra.h │ │ ├── canonical_local.h │ │ ├── canonical_local_sysaix.h │ │ ├── canonical_local_syshpux.h │ │ ├── canonical_local_sysosf1.h │ │ ├── canonical_local_syssolaris.h │ │ ├── canonical_osf1.h │ │ ├── canonical_osf1_sysosf1.h │ │ ├── canonical_sysaix.h │ │ ├── canonical_syshpux.h │ │ ├── canonical_sysosf1.h │ │ ├── canonical_syssolaris.h │ │ ├── ces_big5.h │ │ ├── ces_gbk.h │ │ ├── cjk_variants.h │ │ ├── cns11643.h │ │ ├── cns11643_1.h │ │ ├── cns11643_15.h │ │ ├── cns11643_2.h │ │ ├── cns11643_3.h │ │ ├── cns11643_4.h │ │ ├── cns11643_4a.h │ │ ├── cns11643_4b.h │ │ ├── cns11643_5.h │ │ ├── cns11643_6.h │ │ ├── cns11643_7.h │ │ ├── cns11643_inv.h │ │ ├── config.h │ │ ├── config.h.in │ │ ├── converters.h │ │ ├── cp1046.h │ │ ├── cp1124.h │ │ ├── cp1125.h │ │ ├── cp1129.h │ │ ├── cp1131.h │ │ ├── cp1133.h │ │ ├── cp1161.h │ │ ├── cp1162.h │ │ ├── cp1163.h │ │ ├── cp1250.h │ │ ├── cp1251.h │ │ ├── cp1252.h │ │ ├── cp1253.h │ │ ├── cp1254.h │ │ ├── cp1255.h │ │ ├── cp1256.h │ │ ├── cp1257.h │ │ ├── cp1258.h │ │ ├── cp437.h │ │ ├── cp737.h │ │ ├── cp775.h │ │ ├── cp850.h │ │ ├── cp852.h │ │ ├── cp853.h │ │ ├── cp855.h │ │ ├── cp856.h │ │ ├── cp857.h │ │ ├── cp858.h │ │ ├── cp860.h │ │ ├── cp861.h │ │ ├── cp862.h │ │ ├── cp863.h │ │ ├── cp864.h │ │ ├── cp865.h │ │ ├── cp866.h │ │ ├── cp869.h │ │ ├── cp874.h │ │ ├── cp922.h │ │ ├── cp932.h │ │ ├── cp932ext.h │ │ ├── cp936.h │ │ ├── cp936ext.h │ │ ├── cp943.h │ │ ├── cp949.h │ │ ├── cp950.h │ │ ├── cp950ext.h │ │ ├── dec_hanyu.h │ │ ├── dec_kanji.h │ │ ├── encodings.def │ │ ├── encodings_aix.def │ │ ├── encodings_dos.def │ │ ├── encodings_extra.def │ │ ├── encodings_local.def │ │ ├── encodings_osf1.def │ │ ├── euc_cn.h │ │ ├── euc_jisx0213.h │ │ ├── euc_jp.h │ │ ├── euc_kr.h │ │ ├── euc_tw.h │ │ ├── flags.h │ │ ├── flushwc.h │ │ ├── gb12345.h │ │ ├── gb12345ext.h │ │ ├── gb18030.h │ │ ├── gb18030ext.h │ │ ├── gb18030uni.h │ │ ├── gb2312.h │ │ ├── gbk.h │ │ ├── gbkext1.h │ │ ├── gbkext2.h │ │ ├── gbkext_inv.h │ │ ├── genaliases.c │ │ ├── genaliases2.c │ │ ├── genflags.c │ │ ├── gentranslit.c │ │ ├── georgian_academy.h │ │ ├── georgian_ps.h │ │ ├── hkscs1999.h │ │ ├── hkscs2001.h │ │ ├── hkscs2004.h │ │ ├── hkscs2008.h │ │ ├── hp_roman8.h │ │ ├── hz.h │ │ ├── iconv.c │ │ ├── iconv_open1.h │ │ ├── iconv_open2.h │ │ ├── iso2022_cn.h │ │ ├── iso2022_cnext.h │ │ ├── iso2022_jp.h │ │ ├── iso2022_jp1.h │ │ ├── iso2022_jp2.h │ │ ├── iso2022_jp3.h │ │ ├── iso2022_kr.h │ │ ├── iso646_cn.h │ │ ├── iso646_jp.h │ │ ├── iso8859_1.h │ │ ├── iso8859_10.h │ │ ├── iso8859_11.h │ │ ├── iso8859_13.h │ │ ├── iso8859_14.h │ │ ├── iso8859_15.h │ │ ├── iso8859_16.h │ │ ├── iso8859_2.h │ │ ├── iso8859_3.h │ │ ├── iso8859_4.h │ │ ├── iso8859_5.h │ │ ├── iso8859_6.h │ │ ├── iso8859_7.h │ │ ├── iso8859_8.h │ │ ├── iso8859_9.h │ │ ├── isoir165.h │ │ ├── isoir165ext.h │ │ ├── java.h │ │ ├── jisx0201.h │ │ ├── jisx0208.h │ │ ├── jisx0212.h │ │ ├── jisx0213.h │ │ ├── johab.h │ │ ├── johab_hangul.h │ │ ├── koi8_r.h │ │ ├── koi8_ru.h │ │ ├── koi8_t.h │ │ ├── koi8_u.h │ │ ├── ksc5601.h │ │ ├── loop_unicode.h │ │ ├── loop_wchar.h │ │ ├── loops.h │ │ ├── mac_arabic.h │ │ ├── mac_centraleurope.h │ │ ├── mac_croatian.h │ │ ├── mac_cyrillic.h │ │ ├── mac_greek.h │ │ ├── mac_hebrew.h │ │ ├── mac_iceland.h │ │ ├── mac_roman.h │ │ ├── mac_romania.h │ │ ├── mac_thai.h │ │ ├── mac_turkish.h │ │ ├── mac_ukraine.h │ │ ├── mulelao.h │ │ ├── nextstep.h │ │ ├── pt154.h │ │ ├── relocatable.c │ │ ├── relocatable.h │ │ ├── riscos1.h │ │ ├── rk1048.h │ │ ├── shift_jisx0213.h │ │ ├── sjis.h │ │ ├── tcvn.h │ │ ├── tds565.h │ │ ├── tis620.h │ │ ├── translit.h │ │ ├── ucs2.h │ │ ├── ucs2be.h │ │ ├── ucs2internal.h │ │ ├── ucs2le.h │ │ ├── ucs2swapped.h │ │ ├── ucs4.h │ │ ├── ucs4be.h │ │ ├── ucs4internal.h │ │ ├── ucs4le.h │ │ ├── ucs4swapped.h │ │ ├── uhc_1.h │ │ ├── uhc_2.h │ │ ├── utf16.h │ │ ├── utf16be.h │ │ ├── utf16le.h │ │ ├── utf32.h │ │ ├── utf32be.h │ │ ├── utf32le.h │ │ ├── utf7.h │ │ ├── utf8.h │ │ ├── vietcomb.h │ │ └── viscii.h │ ├── libcharset │ │ ├── include │ │ │ ├── export.h │ │ │ └── localcharset.h │ │ └── lib │ │ │ ├── localcharset.c │ │ │ ├── relocatable.c │ │ │ └── relocatable.h │ └── src │ │ ├── Makefile │ │ ├── Makefile.in │ │ ├── iconv.c │ │ └── iconv_no_i18n.c ├── libpng │ ├── CMakeLists.txt │ ├── png.c │ ├── png.h │ ├── png │ │ └── png.vcxproj │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pnglibconf.h │ ├── pngmem.c │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtest.c │ ├── pngtrans.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ └── pngwutil.c ├── libusb │ ├── .travis.yml │ ├── AUTHORS │ ├── Brewfile │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── INSTALL │ ├── INSTALL_WIN.txt │ ├── Makefile.am │ ├── NEWS │ ├── PORTING │ ├── README │ ├── README.git │ ├── README.md │ ├── TODO │ ├── autogen.sh │ ├── bootstrap.sh │ ├── config.h.in │ ├── configure.ac │ ├── libusb-1.0.pc.in │ ├── libusb │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── core.c │ │ ├── descriptor.c │ │ ├── hotplug.c │ │ ├── hotplug.h │ │ ├── io.c │ │ ├── libusb-1.0.def │ │ ├── libusb-1.0.rc │ │ ├── libusb.h │ │ ├── libusbi.h │ │ ├── os │ │ │ ├── darwin_usb.c │ │ │ ├── darwin_usb.h │ │ │ ├── haiku │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── compile │ │ │ │ ├── config.guess │ │ │ │ ├── config.sub │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── depcomp │ │ │ │ ├── haiku_pollfs.cpp │ │ │ │ ├── haiku_usb.h │ │ │ │ ├── haiku_usb_backend.cpp │ │ │ │ ├── haiku_usb_raw.cpp │ │ │ │ ├── haiku_usb_raw.h │ │ │ │ ├── install-sh │ │ │ │ ├── ltmain.sh │ │ │ │ ├── m4 │ │ │ │ │ ├── libtool.m4 │ │ │ │ │ ├── ltoptions.m4 │ │ │ │ │ ├── ltsugar.m4 │ │ │ │ │ ├── ltversion.m4 │ │ │ │ │ └── lt~obsolete.m4 │ │ │ │ └── missing │ │ │ ├── haiku_pollfs.cpp │ │ │ ├── haiku_usb.h │ │ │ ├── haiku_usb_backend.cpp │ │ │ ├── haiku_usb_raw.cpp │ │ │ ├── haiku_usb_raw.h │ │ │ ├── linux_netlink.c │ │ │ ├── linux_udev.c │ │ │ ├── linux_usbfs.c │ │ │ ├── linux_usbfs.h │ │ │ ├── netbsd_usb.c │ │ │ ├── openbsd_usb.c │ │ │ ├── poll_posix.c │ │ │ ├── poll_posix.h │ │ │ ├── poll_windows.c │ │ │ ├── poll_windows.h │ │ │ ├── sunos_usb.c │ │ │ ├── sunos_usb.h │ │ │ ├── threads_posix.c │ │ │ ├── threads_posix.h │ │ │ ├── threads_windows.c │ │ │ ├── threads_windows.h │ │ │ ├── wince_usb.c │ │ │ ├── wince_usb.h │ │ │ ├── windows_common.h │ │ │ ├── windows_nt_common.c │ │ │ ├── windows_nt_common.h │ │ │ ├── windows_nt_shared_types.h │ │ │ ├── windows_usb.c │ │ │ ├── windows_usb.h │ │ │ ├── windows_usbdk.c │ │ │ ├── windows_usbdk.h │ │ │ ├── windows_winusb.c │ │ │ └── windows_winusb.h │ │ ├── strerror.c │ │ ├── sync.c │ │ ├── version.h │ │ └── version_nano.h │ ├── libusb_static_2013.vcxproj │ ├── msvc │ │ └── config.h │ └── travis-autogen.sh ├── licenses.md ├── mbedtls │ ├── CMakeLists.txt │ ├── LICENSE │ ├── apache-2.0.txt │ ├── include │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ └── mbedtls │ │ │ ├── aes.h │ │ │ ├── aesni.h │ │ │ ├── arc4.h │ │ │ ├── aria.h │ │ │ ├── asn1.h │ │ │ ├── asn1write.h │ │ │ ├── base64.h │ │ │ ├── bignum.h │ │ │ ├── blowfish.h │ │ │ ├── bn_mul.h │ │ │ ├── camellia.h │ │ │ ├── ccm.h │ │ │ ├── certs.h │ │ │ ├── chacha20.h │ │ │ ├── chachapoly.h │ │ │ ├── check_config.h │ │ │ ├── cipher.h │ │ │ ├── cipher_internal.h │ │ │ ├── cmac.h │ │ │ ├── compat-1.3.h │ │ │ ├── config.h │ │ │ ├── ctr_drbg.h │ │ │ ├── debug.h │ │ │ ├── des.h │ │ │ ├── dhm.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── ecjpake.h │ │ │ ├── ecp.h │ │ │ ├── ecp_internal.h │ │ │ ├── entropy.h │ │ │ ├── entropy_poll.h │ │ │ ├── error.h │ │ │ ├── gcm.h │ │ │ ├── havege.h │ │ │ ├── hkdf.h │ │ │ ├── hmac_drbg.h │ │ │ ├── md.h │ │ │ ├── md2.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── md_internal.h │ │ │ ├── memory_buffer_alloc.h │ │ │ ├── net.h │ │ │ ├── net_sockets.h │ │ │ ├── nist_kw.h │ │ │ ├── oid.h │ │ │ ├── padlock.h │ │ │ ├── pem.h │ │ │ ├── pk.h │ │ │ ├── pk_internal.h │ │ │ ├── pkcs11.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs5.h │ │ │ ├── platform.h │ │ │ ├── platform_time.h │ │ │ ├── platform_util.h │ │ │ ├── poly1305.h │ │ │ ├── ripemd160.h │ │ │ ├── rsa.h │ │ │ ├── rsa_internal.h │ │ │ ├── sha1.h │ │ │ ├── sha256.h │ │ │ ├── sha512.h │ │ │ ├── ssl.h │ │ │ ├── ssl_cache.h │ │ │ ├── ssl_ciphersuites.h │ │ │ ├── ssl_cookie.h │ │ │ ├── ssl_internal.h │ │ │ ├── ssl_ticket.h │ │ │ ├── threading.h │ │ │ ├── timing.h │ │ │ ├── version.h │ │ │ ├── x509.h │ │ │ ├── x509_crl.h │ │ │ ├── x509_crt.h │ │ │ ├── x509_csr.h │ │ │ └── xtea.h │ ├── library │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── Makefile │ │ ├── aes.c │ │ ├── aesni.c │ │ ├── arc4.c │ │ ├── aria.c │ │ ├── asn1parse.c │ │ ├── asn1write.c │ │ ├── base64.c │ │ ├── bignum.c │ │ ├── blowfish.c │ │ ├── camellia.c │ │ ├── ccm.c │ │ ├── certs.c │ │ ├── chacha20.c │ │ ├── chachapoly.c │ │ ├── cipher.c │ │ ├── cipher_wrap.c │ │ ├── cmac.c │ │ ├── ctr_drbg.c │ │ ├── debug.c │ │ ├── des.c │ │ ├── dhm.c │ │ ├── ecdh.c │ │ ├── ecdsa.c │ │ ├── ecjpake.c │ │ ├── ecp.c │ │ ├── ecp_curves.c │ │ ├── entropy.c │ │ ├── entropy_poll.c │ │ ├── error.c │ │ ├── gcm.c │ │ ├── havege.c │ │ ├── hkdf.c │ │ ├── hmac_drbg.c │ │ ├── md.c │ │ ├── md2.c │ │ ├── md4.c │ │ ├── md5.c │ │ ├── md_wrap.c │ │ ├── memory_buffer_alloc.c │ │ ├── net_sockets.c │ │ ├── nist_kw.c │ │ ├── oid.c │ │ ├── padlock.c │ │ ├── pem.c │ │ ├── pk.c │ │ ├── pk_wrap.c │ │ ├── pkcs11.c │ │ ├── pkcs12.c │ │ ├── pkcs5.c │ │ ├── pkparse.c │ │ ├── pkwrite.c │ │ ├── platform.c │ │ ├── platform_util.c │ │ ├── poly1305.c │ │ ├── ripemd160.c │ │ ├── rsa.c │ │ ├── rsa_internal.c │ │ ├── sha1.c │ │ ├── sha256.c │ │ ├── sha512.c │ │ ├── ssl_cache.c │ │ ├── ssl_ciphersuites.c │ │ ├── ssl_cli.c │ │ ├── ssl_cookie.c │ │ ├── ssl_srv.c │ │ ├── ssl_ticket.c │ │ ├── ssl_tls.c │ │ ├── threading.c │ │ ├── timing.c │ │ ├── version.c │ │ ├── version_features.c │ │ ├── x509.c │ │ ├── x509_create.c │ │ ├── x509_crl.c │ │ ├── x509_crt.c │ │ ├── x509_csr.c │ │ ├── x509write_crt.c │ │ ├── x509write_csr.c │ │ └── xtea.c │ └── mbedTLS.vcxproj ├── miniupnpc │ ├── CMakeLists.txt │ ├── Changelog.txt │ ├── LICENSE │ ├── README │ ├── VERSION │ ├── apiversions.txt │ ├── miniupnpc.vcxproj │ └── src │ │ ├── codelength.h │ │ ├── connecthostport.c │ │ ├── connecthostport.h │ │ ├── igd_desc_parse.c │ │ ├── igd_desc_parse.h │ │ ├── minisoap.c │ │ ├── minisoap.h │ │ ├── minissdpc.c │ │ ├── minissdpc.h │ │ ├── miniupnpc.c │ │ ├── miniupnpc.h │ │ ├── miniupnpc_declspec.h │ │ ├── miniupnpcmodule.c │ │ ├── miniupnpcstrings.h │ │ ├── miniupnpctypes.h │ │ ├── miniwget.c │ │ ├── miniwget.h │ │ ├── minixml.c │ │ ├── minixml.h │ │ ├── portlistingparse.c │ │ ├── portlistingparse.h │ │ ├── receivedata.c │ │ ├── receivedata.h │ │ ├── upnpcommands.c │ │ ├── upnpcommands.h │ │ ├── upnpdev.c │ │ ├── upnpdev.h │ │ ├── upnperrors.c │ │ ├── upnperrors.h │ │ ├── upnpreplyparse.c │ │ └── upnpreplyparse.h ├── minizip │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README │ ├── ioapi.c │ ├── ioapi.h │ ├── minizip.vcxproj │ ├── unzip.c │ └── unzip.h ├── picojson │ ├── LICENSE │ ├── picojson.cpp │ ├── picojson.h │ ├── picojson.vcxproj │ └── picojson.vcxproj.filters ├── pugixml │ ├── CMakeLists.txt │ ├── pugiconfig.hpp │ ├── pugixml.cpp │ ├── pugixml.hpp │ └── pugixml.vcxproj ├── soundtouch │ ├── AAFilter.cpp │ ├── AAFilter.h │ ├── BPMDetect.cpp │ ├── BPMDetect.h │ ├── CMakeLists.txt │ ├── FIFOSampleBuffer.cpp │ ├── FIFOSampleBuffer.h │ ├── FIFOSamplePipe.h │ ├── FIRFilter.cpp │ ├── FIRFilter.h │ ├── InterpolateCubic.cpp │ ├── InterpolateCubic.h │ ├── InterpolateLinear.cpp │ ├── InterpolateLinear.h │ ├── InterpolateShannon.cpp │ ├── InterpolateShannon.h │ ├── PeakFinder.cpp │ ├── PeakFinder.h │ ├── RateTransposer.cpp │ ├── RateTransposer.h │ ├── STTypes.h │ ├── SoundTouch.cpp │ ├── SoundTouch.h │ ├── SoundTouch.vcxproj │ ├── TDStretch.cpp │ ├── TDStretch.h │ ├── cpu_detect.h │ ├── cpu_detect_x86.cpp │ ├── mmx_optimized.cpp │ └── sse_optimized.cpp ├── xxhash │ ├── CMakeLists.txt │ ├── LICENSE │ ├── xxhash.c │ ├── xxhash.h │ ├── xxhash.vcxproj │ └── xxhsum.c └── zlib │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.h │ ├── zlib.vcxproj │ ├── zutil.c │ └── zutil.h ├── Installer ├── Dolphin.ico ├── Installer.nsi ├── dolphin-emu.spec ├── dxredist │ ├── APR2007_xinput_x64.cab │ ├── APR2007_xinput_x86.cab │ ├── DSETUP.dll │ ├── DXSETUP.exe │ ├── dsetup32.dll │ └── dxupdate.cab ├── license.txt └── vcredist │ └── vc_redist.x64.exe ├── Languages ├── Languages.vcxproj ├── po.props ├── po.rules ├── po.targets ├── po.xml ├── po │ ├── ar.po │ ├── ca.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── dolphin-emu.pot │ ├── el.po │ ├── en.po │ ├── es.po │ ├── fa.po │ ├── fr.po │ ├── hr.po │ ├── hu.po │ ├── it.po │ ├── ja.po │ ├── ko.po │ ├── ms.po │ ├── nb.po │ ├── nl.po │ ├── pl.po │ ├── pt.po │ ├── pt_BR.po │ ├── ro.po │ ├── ru.po │ ├── sr.po │ ├── sv.po │ ├── tr.po │ ├── zh_CN.po │ └── zh_TW.po ├── update-source-strings.sh └── update-translated-strings.sh ├── Readme.md ├── Source ├── .clang-format ├── Android │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ ├── GCPadNew.ini │ │ │ ├── WiimoteNew.ini │ │ │ └── WiimoteProfile.ini │ │ │ ├── java │ │ │ └── org │ │ │ │ └── dolphinemu │ │ │ │ └── dolphinemu │ │ │ │ ├── DolphinApplication.java │ │ │ │ ├── NativeLibrary.java │ │ │ │ ├── activities │ │ │ │ ├── AppLinkActivity.java │ │ │ │ ├── CustomFilePickerActivity.java │ │ │ │ └── EmulationActivity.java │ │ │ │ ├── adapters │ │ │ │ ├── GameAdapter.java │ │ │ │ ├── GameRowPresenter.java │ │ │ │ ├── PlatformPagerAdapter.java │ │ │ │ └── SettingsRowPresenter.java │ │ │ │ ├── dialogs │ │ │ │ ├── GameSettingsDialog.java │ │ │ │ └── MotionAlertDialog.java │ │ │ │ ├── features │ │ │ │ └── settings │ │ │ │ │ ├── model │ │ │ │ │ ├── BooleanSetting.java │ │ │ │ │ ├── FloatSetting.java │ │ │ │ │ ├── IntSetting.java │ │ │ │ │ ├── Setting.java │ │ │ │ │ ├── SettingSection.java │ │ │ │ │ ├── Settings.java │ │ │ │ │ ├── StringSetting.java │ │ │ │ │ └── view │ │ │ │ │ │ ├── CheckBoxSetting.java │ │ │ │ │ │ ├── HeaderSetting.java │ │ │ │ │ │ ├── InputBindingSetting.java │ │ │ │ │ │ ├── RumbleBindingSetting.java │ │ │ │ │ │ ├── SettingsItem.java │ │ │ │ │ │ ├── SingleChoiceSetting.java │ │ │ │ │ │ ├── SingleChoiceSettingDynamicDescriptions.java │ │ │ │ │ │ ├── SliderSetting.java │ │ │ │ │ │ ├── StringSingleChoiceSetting.java │ │ │ │ │ │ └── SubmenuSetting.java │ │ │ │ │ ├── ui │ │ │ │ │ ├── MenuTag.java │ │ │ │ │ ├── SettingsActivity.java │ │ │ │ │ ├── SettingsActivityPresenter.java │ │ │ │ │ ├── SettingsActivityView.java │ │ │ │ │ ├── SettingsAdapter.java │ │ │ │ │ ├── SettingsFragment.java │ │ │ │ │ ├── SettingsFragmentPresenter.java │ │ │ │ │ ├── SettingsFragmentView.java │ │ │ │ │ ├── SettingsFrameLayout.java │ │ │ │ │ └── viewholder │ │ │ │ │ │ ├── CheckBoxSettingViewHolder.java │ │ │ │ │ │ ├── HeaderViewHolder.java │ │ │ │ │ │ ├── InputBindingSettingViewHolder.java │ │ │ │ │ │ ├── RumbleBindingViewHolder.java │ │ │ │ │ │ ├── SettingViewHolder.java │ │ │ │ │ │ ├── SingleChoiceViewHolder.java │ │ │ │ │ │ ├── SliderViewHolder.java │ │ │ │ │ │ └── SubmenuViewHolder.java │ │ │ │ │ └── utils │ │ │ │ │ └── SettingsFile.java │ │ │ │ ├── fragments │ │ │ │ ├── CustomFilePickerFragment.java │ │ │ │ ├── EmulationFragment.java │ │ │ │ ├── MenuFragment.java │ │ │ │ └── SaveLoadStateFragment.java │ │ │ │ ├── model │ │ │ │ ├── GameFile.java │ │ │ │ ├── GameFileCache.java │ │ │ │ ├── HomeScreenChannel.java │ │ │ │ └── TvSettingsItem.java │ │ │ │ ├── overlay │ │ │ │ ├── InputOverlay.java │ │ │ │ ├── InputOverlayDrawableButton.java │ │ │ │ ├── InputOverlayDrawableDpad.java │ │ │ │ ├── InputOverlayDrawableJoystick.java │ │ │ │ └── InputOverlayPointer.java │ │ │ │ ├── services │ │ │ │ ├── GameFileCacheService.java │ │ │ │ ├── SyncChannelJobService.java │ │ │ │ ├── SyncProgramsJobService.java │ │ │ │ └── USBPermService.java │ │ │ │ ├── ui │ │ │ │ ├── DividerItemDecoration.java │ │ │ │ ├── NVidiaShieldWorkaroundView.java │ │ │ │ ├── input │ │ │ │ │ └── gamecube │ │ │ │ │ │ ├── ControllerFragment.java │ │ │ │ │ │ ├── ControllerFragmentPresenter.java │ │ │ │ │ │ └── ControllerFragmentView.java │ │ │ │ ├── main │ │ │ │ │ ├── CustomTitleView.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ ├── MainPresenter.java │ │ │ │ │ ├── MainView.java │ │ │ │ │ └── TvMainActivity.java │ │ │ │ └── platform │ │ │ │ │ ├── Platform.java │ │ │ │ │ ├── PlatformGamesFragment.java │ │ │ │ │ └── PlatformGamesView.java │ │ │ │ ├── utils │ │ │ │ ├── Action1.java │ │ │ │ ├── AfterDirectoryInitializationRunner.java │ │ │ │ ├── Analytics.java │ │ │ │ ├── Animations.java │ │ │ │ ├── AppLinkHelper.java │ │ │ │ ├── BiMap.java │ │ │ │ ├── ControllerMappingHelper.java │ │ │ │ ├── CoverHelper.java │ │ │ │ ├── DirectoryInitialization.java │ │ │ │ ├── DirectoryStateReceiver.java │ │ │ │ ├── EGLHelper.java │ │ │ │ ├── FileBrowserHelper.java │ │ │ │ ├── Java_GCAdapter.java │ │ │ │ ├── Java_WiimoteAdapter.java │ │ │ │ ├── Log.java │ │ │ │ ├── PermissionsHandler.java │ │ │ │ ├── PicassoUtils.java │ │ │ │ ├── Rumble.java │ │ │ │ ├── StartupHandler.java │ │ │ │ ├── TvUtil.java │ │ │ │ └── VolleyUtil.java │ │ │ │ └── viewholders │ │ │ │ ├── FileViewHolder.java │ │ │ │ ├── GameViewHolder.java │ │ │ │ ├── TvGameViewHolder.java │ │ │ │ └── TvSettingsViewHolder.java │ │ │ └── res │ │ │ ├── animator │ │ │ ├── button_elevation.xml │ │ │ ├── menu_slide_in_from_left.xml │ │ │ ├── menu_slide_in_from_right.xml │ │ │ ├── menu_slide_out_to_left.xml │ │ │ ├── menu_slide_out_to_right.xml │ │ │ ├── settings_enter.xml │ │ │ ├── settings_exit.xml │ │ │ ├── settings_pop_enter.xml │ │ │ └── setttings_pop_exit.xml │ │ │ ├── color │ │ │ └── button_text_color.xml │ │ │ ├── drawable-hdpi │ │ │ ├── classic_a.png │ │ │ ├── classic_a_pressed.png │ │ │ ├── classic_b.png │ │ │ ├── classic_b_pressed.png │ │ │ ├── classic_l.png │ │ │ ├── classic_l_pressed.png │ │ │ ├── classic_r.png │ │ │ ├── classic_r_pressed.png │ │ │ ├── classic_x.png │ │ │ ├── classic_x_pressed.png │ │ │ ├── classic_y.png │ │ │ ├── classic_y_pressed.png │ │ │ ├── classic_zl.png │ │ │ ├── classic_zl_pressed.png │ │ │ ├── classic_zr.png │ │ │ ├── classic_zr_pressed.png │ │ │ ├── gcpad_a.png │ │ │ ├── gcpad_a_pressed.png │ │ │ ├── gcpad_b.png │ │ │ ├── gcpad_b_pressed.png │ │ │ ├── gcpad_c.png │ │ │ ├── gcpad_c_pressed.png │ │ │ ├── gcpad_l.png │ │ │ ├── gcpad_l_pressed.png │ │ │ ├── gcpad_r.png │ │ │ ├── gcpad_r_pressed.png │ │ │ ├── gcpad_start.png │ │ │ ├── gcpad_start_pressed.png │ │ │ ├── gcpad_x.png │ │ │ ├── gcpad_x_pressed.png │ │ │ ├── gcpad_y.png │ │ │ ├── gcpad_y_pressed.png │ │ │ ├── gcpad_z.png │ │ │ ├── gcpad_z_pressed.png │ │ │ ├── gcwii_dpad.png │ │ │ ├── gcwii_dpad_pressed_one_direction.png │ │ │ ├── gcwii_dpad_pressed_two_directions.png │ │ │ ├── gcwii_joystick.png │ │ │ ├── gcwii_joystick_pressed.png │ │ │ ├── gcwii_joystick_range.png │ │ │ ├── ic_add.png │ │ │ ├── ic_company.png │ │ │ ├── ic_country.png │ │ │ ├── ic_folder.png │ │ │ ├── ic_gamecube.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_play.png │ │ │ ├── ic_quickload.png │ │ │ ├── ic_quicksave.png │ │ │ ├── ic_refresh.png │ │ │ ├── ic_screenshot.png │ │ │ ├── ic_settings_core.png │ │ │ ├── ic_settings_gcpad.png │ │ │ ├── ic_settings_graphics.png │ │ │ ├── ic_settings_wiimote.png │ │ │ ├── ic_wii.png │ │ │ ├── nunchuk_c.png │ │ │ ├── nunchuk_c_pressed.png │ │ │ ├── nunchuk_z.png │ │ │ ├── nunchuk_z_pressed.png │ │ │ ├── wiimote_a.png │ │ │ ├── wiimote_a_pressed.png │ │ │ ├── wiimote_b.png │ │ │ ├── wiimote_b_pressed.png │ │ │ ├── wiimote_home.png │ │ │ ├── wiimote_home_pressed.png │ │ │ ├── wiimote_minus.png │ │ │ ├── wiimote_minus_pressed.png │ │ │ ├── wiimote_one.png │ │ │ ├── wiimote_one_pressed.png │ │ │ ├── wiimote_plus.png │ │ │ ├── wiimote_plus_pressed.png │ │ │ ├── wiimote_two.png │ │ │ └── wiimote_two_pressed.png │ │ │ ├── drawable-mdpi │ │ │ ├── ic_quickload.png │ │ │ ├── ic_quicksave.png │ │ │ ├── ic_screenshot.png │ │ │ ├── ic_settings_gcpad.png │ │ │ └── ic_settings_wiimote.png │ │ │ ├── drawable-xhdpi │ │ │ ├── banner_tv.png │ │ │ ├── classic_a.png │ │ │ ├── classic_a_pressed.png │ │ │ ├── classic_b.png │ │ │ ├── classic_b_pressed.png │ │ │ ├── classic_l.png │ │ │ ├── classic_l_pressed.png │ │ │ ├── classic_r.png │ │ │ ├── classic_r_pressed.png │ │ │ ├── classic_x.png │ │ │ ├── classic_x_pressed.png │ │ │ ├── classic_y.png │ │ │ ├── classic_y_pressed.png │ │ │ ├── classic_zl.png │ │ │ ├── classic_zl_pressed.png │ │ │ ├── classic_zr.png │ │ │ ├── classic_zr_pressed.png │ │ │ ├── gcpad_a.png │ │ │ ├── gcpad_a_pressed.png │ │ │ ├── gcpad_b.png │ │ │ ├── gcpad_b_pressed.png │ │ │ ├── gcpad_c.png │ │ │ ├── gcpad_c_pressed.png │ │ │ ├── gcpad_l.png │ │ │ ├── gcpad_l_pressed.png │ │ │ ├── gcpad_r.png │ │ │ ├── gcpad_r_pressed.png │ │ │ ├── gcpad_start.png │ │ │ ├── gcpad_start_pressed.png │ │ │ ├── gcpad_x.png │ │ │ ├── gcpad_x_pressed.png │ │ │ ├── gcpad_y.png │ │ │ ├── gcpad_y_pressed.png │ │ │ ├── gcpad_z.png │ │ │ ├── gcpad_z_pressed.png │ │ │ ├── gcwii_dpad.png │ │ │ ├── gcwii_dpad_pressed_one_direction.png │ │ │ ├── gcwii_dpad_pressed_two_directions.png │ │ │ ├── gcwii_joystick.png │ │ │ ├── gcwii_joystick_pressed.png │ │ │ ├── gcwii_joystick_range.png │ │ │ ├── ic_add.png │ │ │ ├── ic_company.png │ │ │ ├── ic_country.png │ │ │ ├── ic_folder.png │ │ │ ├── ic_gamecube.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_play.png │ │ │ ├── ic_quickload.png │ │ │ ├── ic_quicksave.png │ │ │ ├── ic_refresh.png │ │ │ ├── ic_screenshot.png │ │ │ ├── ic_settings_core.png │ │ │ ├── ic_settings_gcpad.png │ │ │ ├── ic_settings_graphics.png │ │ │ ├── ic_settings_wiimote.png │ │ │ ├── ic_wii.png │ │ │ ├── nunchuk_c.png │ │ │ ├── nunchuk_c_pressed.png │ │ │ ├── nunchuk_z.png │ │ │ ├── nunchuk_z_pressed.png │ │ │ ├── wiimote_a.png │ │ │ ├── wiimote_a_pressed.png │ │ │ ├── wiimote_b.png │ │ │ ├── wiimote_b_pressed.png │ │ │ ├── wiimote_home.png │ │ │ ├── wiimote_home_pressed.png │ │ │ ├── wiimote_minus.png │ │ │ ├── wiimote_minus_pressed.png │ │ │ ├── wiimote_one.png │ │ │ ├── wiimote_one_pressed.png │ │ │ ├── wiimote_plus.png │ │ │ ├── wiimote_plus_pressed.png │ │ │ ├── wiimote_two.png │ │ │ └── wiimote_two_pressed.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── classic_a.png │ │ │ ├── classic_a_pressed.png │ │ │ ├── classic_b.png │ │ │ ├── classic_b_pressed.png │ │ │ ├── classic_l.png │ │ │ ├── classic_l_pressed.png │ │ │ ├── classic_r.png │ │ │ ├── classic_r_pressed.png │ │ │ ├── classic_x.png │ │ │ ├── classic_x_pressed.png │ │ │ ├── classic_y.png │ │ │ ├── classic_y_pressed.png │ │ │ ├── classic_zl.png │ │ │ ├── classic_zl_pressed.png │ │ │ ├── classic_zr.png │ │ │ ├── classic_zr_pressed.png │ │ │ ├── gcpad_a.png │ │ │ ├── gcpad_a_pressed.png │ │ │ ├── gcpad_b.png │ │ │ ├── gcpad_b_pressed.png │ │ │ ├── gcpad_c.png │ │ │ ├── gcpad_c_pressed.png │ │ │ ├── gcpad_l.png │ │ │ ├── gcpad_l_pressed.png │ │ │ ├── gcpad_r.png │ │ │ ├── gcpad_r_pressed.png │ │ │ ├── gcpad_start.png │ │ │ ├── gcpad_start_pressed.png │ │ │ ├── gcpad_x.png │ │ │ ├── gcpad_x_pressed.png │ │ │ ├── gcpad_y.png │ │ │ ├── gcpad_y_pressed.png │ │ │ ├── gcpad_z.png │ │ │ ├── gcpad_z_pressed.png │ │ │ ├── gcwii_dpad.png │ │ │ ├── gcwii_dpad_pressed_one_direction.png │ │ │ ├── gcwii_dpad_pressed_two_directions.png │ │ │ ├── gcwii_joystick.png │ │ │ ├── gcwii_joystick_pressed.png │ │ │ ├── gcwii_joystick_range.png │ │ │ ├── ic_add.png │ │ │ ├── ic_company.png │ │ │ ├── ic_country.png │ │ │ ├── ic_folder.png │ │ │ ├── ic_gamecube.png │ │ │ ├── ic_launcher.png │ │ │ ├── ic_play.png │ │ │ ├── ic_quickload.png │ │ │ ├── ic_quicksave.png │ │ │ ├── ic_refresh.png │ │ │ ├── ic_screenshot.png │ │ │ ├── ic_settings_core.png │ │ │ ├── ic_settings_gcpad.png │ │ │ ├── ic_settings_graphics.png │ │ │ ├── ic_settings_wiimote.png │ │ │ ├── ic_wii.png │ │ │ ├── nunchuk_c.png │ │ │ ├── nunchuk_c_pressed.png │ │ │ ├── nunchuk_z.png │ │ │ ├── nunchuk_z_pressed.png │ │ │ ├── wiimote_a.png │ │ │ ├── wiimote_a_pressed.png │ │ │ ├── wiimote_b.png │ │ │ ├── wiimote_b_pressed.png │ │ │ ├── wiimote_home.png │ │ │ ├── wiimote_home_pressed.png │ │ │ ├── wiimote_minus.png │ │ │ ├── wiimote_minus_pressed.png │ │ │ ├── wiimote_one.png │ │ │ ├── wiimote_one_pressed.png │ │ │ ├── wiimote_plus.png │ │ │ ├── wiimote_plus_pressed.png │ │ │ ├── wiimote_two.png │ │ │ └── wiimote_two_pressed.png │ │ │ ├── drawable-xxxhdpi │ │ │ ├── banner_tv.png │ │ │ ├── classic_a.png │ │ │ ├── classic_a_pressed.png │ │ │ ├── classic_b.png │ │ │ ├── classic_b_pressed.png │ │ │ ├── classic_l.png │ │ │ ├── classic_l_pressed.png │ │ │ ├── classic_r.png │ │ │ ├── classic_r_pressed.png │ │ │ ├── classic_x.png │ │ │ ├── classic_x_pressed.png │ │ │ ├── classic_y.png │ │ │ ├── classic_y_pressed.png │ │ │ ├── classic_zl.png │ │ │ ├── classic_zl_pressed.png │ │ │ ├── classic_zr.png │ │ │ ├── classic_zr_pressed.png │ │ │ ├── gcpad_a.png │ │ │ ├── gcpad_a_pressed.png │ │ │ ├── gcpad_b.png │ │ │ ├── gcpad_b_pressed.png │ │ │ ├── gcpad_c.png │ │ │ ├── gcpad_c_pressed.png │ │ │ ├── gcpad_l.png │ │ │ ├── gcpad_l_pressed.png │ │ │ ├── gcpad_r.png │ │ │ ├── gcpad_r_pressed.png │ │ │ ├── gcpad_start.png │ │ │ ├── gcpad_start_pressed.png │ │ │ ├── gcpad_x.png │ │ │ ├── gcpad_x_pressed.png │ │ │ ├── gcpad_y.png │ │ │ ├── gcpad_y_pressed.png │ │ │ ├── gcpad_z.png │ │ │ ├── gcpad_z_pressed.png │ │ │ ├── gcwii_dpad.png │ │ │ ├── gcwii_dpad_pressed_one_direction.png │ │ │ ├── gcwii_dpad_pressed_two_directions.png │ │ │ ├── gcwii_joystick.png │ │ │ ├── gcwii_joystick_pressed.png │ │ │ ├── gcwii_joystick_range.png │ │ │ ├── ic_add.png │ │ │ ├── ic_company.png │ │ │ ├── ic_country.png │ │ │ ├── ic_folder.png │ │ │ ├── ic_gamecube.png │ │ │ ├── ic_play.png │ │ │ ├── ic_quickload.png │ │ │ ├── ic_quicksave.png │ │ │ ├── ic_refresh.png │ │ │ ├── ic_screenshot.png │ │ │ ├── ic_settings_core.png │ │ │ ├── ic_settings_gcpad.png │ │ │ ├── ic_settings_graphics.png │ │ │ ├── ic_settings_wiimote.png │ │ │ ├── ic_wii.png │ │ │ ├── nunchuk_c.png │ │ │ ├── nunchuk_c_pressed.png │ │ │ ├── nunchuk_z.png │ │ │ ├── nunchuk_z_pressed.png │ │ │ ├── wiimote_a.png │ │ │ ├── wiimote_a_pressed.png │ │ │ ├── wiimote_b.png │ │ │ ├── wiimote_b_pressed.png │ │ │ ├── wiimote_home.png │ │ │ ├── wiimote_home_pressed.png │ │ │ ├── wiimote_minus.png │ │ │ ├── wiimote_minus_pressed.png │ │ │ ├── wiimote_one.png │ │ │ ├── wiimote_one_pressed.png │ │ │ ├── wiimote_plus.png │ │ │ ├── wiimote_plus_pressed.png │ │ │ ├── wiimote_two.png │ │ │ └── wiimote_two_pressed.png │ │ │ ├── drawable │ │ │ ├── ic_add_tv.png │ │ │ ├── ic_refresh_tv.png │ │ │ ├── ic_settings_core_tv.png │ │ │ ├── ic_settings_gcpad.png │ │ │ ├── ic_settings_graphics_tv.png │ │ │ ├── ic_settings_wiimote.png │ │ │ ├── no_banner.png │ │ │ ├── oval_ripple_grey.xml │ │ │ ├── tv_card_background_gamecube.xml │ │ │ ├── tv_card_background_wii.xml │ │ │ └── tv_card_background_wiiware.xml │ │ │ ├── layout-port │ │ │ └── fragment_emulation.xml │ │ │ ├── layout-television │ │ │ ├── activity_emulation.xml │ │ │ └── fragment_emulation.xml │ │ │ ├── layout │ │ │ ├── activity_add_directory.xml │ │ │ ├── activity_emulation.xml │ │ │ ├── activity_main.xml │ │ │ ├── activity_settings.xml │ │ │ ├── activity_tv_main.xml │ │ │ ├── card_game.xml │ │ │ ├── dialog_ir_sensitivity.xml │ │ │ ├── dialog_seekbar.xml │ │ │ ├── fragment_emulation.xml │ │ │ ├── fragment_grid.xml │ │ │ ├── fragment_ingame_menu.xml │ │ │ ├── fragment_saveload_state.xml │ │ │ ├── fragment_settings.xml │ │ │ ├── list_item_file.xml │ │ │ ├── list_item_setting.xml │ │ │ ├── list_item_setting_checkbox.xml │ │ │ ├── list_item_settings_header.xml │ │ │ ├── titleview.xml │ │ │ └── tv_title.xml │ │ │ ├── menu │ │ │ ├── menu_add_directory.xml │ │ │ ├── menu_emulation.xml │ │ │ ├── menu_emulation_wii.xml │ │ │ ├── menu_game_grid.xml │ │ │ └── menu_settings.xml │ │ │ ├── values-notouch │ │ │ └── strings.xml │ │ │ ├── values-w1000dp │ │ │ └── integers.xml │ │ │ ├── values-w1050dp │ │ │ └── dimens.xml │ │ │ ├── values-w500dp │ │ │ └── integers.xml │ │ │ ├── values-w750dp │ │ │ └── integers.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── arrays.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── integers.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── code-style-java.xml │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── jni │ │ ├── AndroidCommon │ │ │ ├── AndroidCommon.cpp │ │ │ ├── AndroidCommon.h │ │ │ ├── IDCache.cpp │ │ │ └── IDCache.h │ │ ├── ButtonManager.cpp │ │ ├── ButtonManager.h │ │ ├── CMakeLists.txt │ │ ├── GameList │ │ │ ├── GameFile.cpp │ │ │ ├── GameFile.h │ │ │ └── GameFileCache.cpp │ │ └── MainAndroid.cpp │ └── settings.gradle ├── CMakeLists.txt ├── Core │ ├── AudioCommon │ │ ├── AlsaSoundStream.cpp │ │ ├── AlsaSoundStream.h │ │ ├── AudioCommon.cpp │ │ ├── AudioCommon.h │ │ ├── AudioCommon.vcxproj │ │ ├── AudioCommon.vcxproj.filters │ │ ├── AudioStretcher.cpp │ │ ├── AudioStretcher.h │ │ ├── CMakeLists.txt │ │ ├── CubebStream.cpp │ │ ├── CubebStream.h │ │ ├── CubebUtils.cpp │ │ ├── CubebUtils.h │ │ ├── Mixer.cpp │ │ ├── Mixer.h │ │ ├── NullSoundStream.cpp │ │ ├── NullSoundStream.h │ │ ├── OpenALStream.cpp │ │ ├── OpenALStream.h │ │ ├── OpenSLESStream.cpp │ │ ├── OpenSLESStream.h │ │ ├── PulseAudioStream.cpp │ │ ├── PulseAudioStream.h │ │ ├── SoundStream.h │ │ ├── SurroundDecoder.cpp │ │ ├── SurroundDecoder.h │ │ ├── WASAPIStream.cpp │ │ ├── WASAPIStream.h │ │ ├── WaveFile.cpp │ │ └── WaveFile.h │ ├── CMakeLists.txt │ ├── Common │ │ ├── Align.h │ │ ├── Analytics.cpp │ │ ├── Analytics.h │ │ ├── AndroidAnalytics.cpp │ │ ├── AndroidAnalytics.h │ │ ├── Arm64Emitter.cpp │ │ ├── Arm64Emitter.h │ │ ├── ArmCPUDetect.cpp │ │ ├── ArmCommon.h │ │ ├── Assert.h │ │ ├── Atomic.h │ │ ├── Atomic_GCC.h │ │ ├── Atomic_Win32.h │ │ ├── BitField.h │ │ ├── BitField.natvis │ │ ├── BitSet.h │ │ ├── BitUtils.h │ │ ├── BlockingLoop.h │ │ ├── CDUtils.cpp │ │ ├── CDUtils.h │ │ ├── CMakeLists.txt │ │ ├── CPUDetect.h │ │ ├── ChunkFile.h │ │ ├── CodeBlock.h │ │ ├── ColorUtil.cpp │ │ ├── ColorUtil.h │ │ ├── Common.h │ │ ├── Common.vcxproj │ │ ├── Common.vcxproj.filters │ │ ├── CommonFuncs.cpp │ │ ├── CommonFuncs.h │ │ ├── CommonPaths.h │ │ ├── CommonTypes.h │ │ ├── CompatPatches.cpp │ │ ├── Compiler.h │ │ ├── Config │ │ │ ├── Config.cpp │ │ │ ├── Config.h │ │ │ ├── ConfigInfo.cpp │ │ │ ├── ConfigInfo.h │ │ │ ├── Enums.h │ │ │ ├── Layer.cpp │ │ │ └── Layer.h │ │ ├── Crypto │ │ │ ├── AES.cpp │ │ │ ├── AES.h │ │ │ ├── bn.cpp │ │ │ ├── bn.h │ │ │ ├── ec.cpp │ │ │ └── ec.h │ │ ├── Debug │ │ │ ├── MemoryPatches.cpp │ │ │ ├── MemoryPatches.h │ │ │ ├── Watches.cpp │ │ │ └── Watches.h │ │ ├── DebugInterface.h │ │ ├── DynamicLibrary.cpp │ │ ├── DynamicLibrary.h │ │ ├── ENetUtil.cpp │ │ ├── ENetUtil.h │ │ ├── Event.h │ │ ├── FPURoundMode.h │ │ ├── File.cpp │ │ ├── File.h │ │ ├── FileSearch.cpp │ │ ├── FileSearch.h │ │ ├── FileUtil.cpp │ │ ├── FileUtil.h │ │ ├── FixedSizeQueue.h │ │ ├── Flag.h │ │ ├── FloatUtils.cpp │ │ ├── FloatUtils.h │ │ ├── GL │ │ │ ├── GLContext.cpp │ │ │ ├── GLContext.h │ │ │ ├── GLExtensions │ │ │ │ ├── AMD_pinned_memory.h │ │ │ │ ├── ARB_ES2_compatibility.h │ │ │ │ ├── ARB_ES3_compatibility.h │ │ │ │ ├── ARB_blend_func_extended.h │ │ │ │ ├── ARB_buffer_storage.h │ │ │ │ ├── ARB_clip_control.h │ │ │ │ ├── ARB_compute_shader.h │ │ │ │ ├── ARB_copy_image.h │ │ │ │ ├── ARB_debug_output.h │ │ │ │ ├── ARB_draw_elements_base_vertex.h │ │ │ │ ├── ARB_framebuffer_object.h │ │ │ │ ├── ARB_get_program_binary.h │ │ │ │ ├── ARB_map_buffer_range.h │ │ │ │ ├── ARB_occlusion_query2.h │ │ │ │ ├── ARB_sample_shading.h │ │ │ │ ├── ARB_sampler_objects.h │ │ │ │ ├── ARB_shader_image_load_store.h │ │ │ │ ├── ARB_shader_storage_buffer_object.h │ │ │ │ ├── ARB_sync.h │ │ │ │ ├── ARB_texture_compression_bptc.h │ │ │ │ ├── ARB_texture_multisample.h │ │ │ │ ├── ARB_texture_storage.h │ │ │ │ ├── ARB_texture_storage_multisample.h │ │ │ │ ├── ARB_uniform_buffer_object.h │ │ │ │ ├── ARB_vertex_array_object.h │ │ │ │ ├── ARB_viewport_array.h │ │ │ │ ├── EXT_texture_compression_s3tc.h │ │ │ │ ├── EXT_texture_filter_anisotropic.h │ │ │ │ ├── GLExtensions.cpp │ │ │ │ ├── GLExtensions.h │ │ │ │ ├── HP_occlusion_test.h │ │ │ │ ├── KHR_debug.h │ │ │ │ ├── NV_depth_buffer_float.h │ │ │ │ ├── NV_occlusion_query_samples.h │ │ │ │ ├── NV_primitive_restart.h │ │ │ │ ├── gl_1_1.h │ │ │ │ ├── gl_1_2.h │ │ │ │ ├── gl_1_3.h │ │ │ │ ├── gl_1_4.h │ │ │ │ ├── gl_1_5.h │ │ │ │ ├── gl_2_0.h │ │ │ │ ├── gl_2_1.h │ │ │ │ ├── gl_3_0.h │ │ │ │ ├── gl_3_1.h │ │ │ │ ├── gl_3_2.h │ │ │ │ ├── gl_4_2.h │ │ │ │ ├── gl_4_3.h │ │ │ │ ├── gl_4_4.h │ │ │ │ ├── gl_4_5.h │ │ │ │ └── gl_common.h │ │ │ ├── GLInterface │ │ │ │ ├── AGL.h │ │ │ │ ├── AGL.mm │ │ │ │ ├── EGL.cpp │ │ │ │ ├── EGL.h │ │ │ │ ├── EGLAndroid.cpp │ │ │ │ ├── EGLAndroid.h │ │ │ │ ├── EGLX11.cpp │ │ │ │ ├── EGLX11.h │ │ │ │ ├── GLX.cpp │ │ │ │ ├── GLX.h │ │ │ │ ├── WGL.cpp │ │ │ │ └── WGL.h │ │ │ ├── GLUtil.cpp │ │ │ ├── GLUtil.h │ │ │ ├── GLX11Window.cpp │ │ │ └── GLX11Window.h │ │ ├── GekkoDisassembler.cpp │ │ ├── GekkoDisassembler.h │ │ ├── GenericCPUDetect.cpp │ │ ├── GenericFPURoundMode.cpp │ │ ├── Hash.cpp │ │ ├── Hash.h │ │ ├── HttpRequest.cpp │ │ ├── HttpRequest.h │ │ ├── Image.cpp │ │ ├── Image.h │ │ ├── IniFile.cpp │ │ ├── IniFile.h │ │ ├── Intrinsics.h │ │ ├── JitRegister.cpp │ │ ├── JitRegister.h │ │ ├── Lazy.h │ │ ├── LdrWatcher.cpp │ │ ├── LdrWatcher.h │ │ ├── LinearDiskCache.h │ │ ├── Logging │ │ │ ├── ConsoleListener.h │ │ │ ├── ConsoleListenerDroid.cpp │ │ │ ├── ConsoleListenerNix.cpp │ │ │ ├── ConsoleListenerWin.cpp │ │ │ ├── Log.h │ │ │ ├── LogManager.cpp │ │ │ └── LogManager.h │ │ ├── MD5.cpp │ │ ├── MD5.h │ │ ├── MathUtil.cpp │ │ ├── MathUtil.h │ │ ├── Matrix.cpp │ │ ├── Matrix.h │ │ ├── MemArena.cpp │ │ ├── MemArena.h │ │ ├── MemoryUtil.cpp │ │ ├── MemoryUtil.h │ │ ├── MinizipUtil.h │ │ ├── MsgHandler.cpp │ │ ├── MsgHandler.h │ │ ├── NandPaths.cpp │ │ ├── NandPaths.h │ │ ├── Network.cpp │ │ ├── Network.h │ │ ├── PcapFile.cpp │ │ ├── PcapFile.h │ │ ├── PerformanceCounter.cpp │ │ ├── PerformanceCounter.h │ │ ├── Profiler.cpp │ │ ├── Profiler.h │ │ ├── QoSSession.cpp │ │ ├── QoSSession.h │ │ ├── Random.cpp │ │ ├── Random.h │ │ ├── Result.h │ │ ├── SCMRevGen.vcxproj │ │ ├── SDCardUtil.cpp │ │ ├── SDCardUtil.h │ │ ├── SFMLHelper.cpp │ │ ├── SFMLHelper.h │ │ ├── SPSCQueue.h │ │ ├── ScopeGuard.h │ │ ├── Semaphore.h │ │ ├── SettingsHandler.cpp │ │ ├── SettingsHandler.h │ │ ├── StringUtil.cpp │ │ ├── StringUtil.h │ │ ├── Swap.h │ │ ├── SymbolDB.cpp │ │ ├── SymbolDB.h │ │ ├── Thread.cpp │ │ ├── Thread.h │ │ ├── Timer.cpp │ │ ├── Timer.h │ │ ├── TraversalClient.cpp │ │ ├── TraversalClient.h │ │ ├── TraversalProto.h │ │ ├── TraversalServer.cpp │ │ ├── UPnP.cpp │ │ ├── UPnP.h │ │ ├── VariantUtil.h │ │ ├── Version.cpp │ │ ├── Version.h │ │ ├── WindowSystemInfo.h │ │ ├── WorkQueueThread.h │ │ ├── make_scmrev.h.js │ │ ├── scmrev.h.in │ │ ├── x64ABI.cpp │ │ ├── x64ABI.h │ │ ├── x64CPUDetect.cpp │ │ ├── x64Emitter.cpp │ │ ├── x64Emitter.h │ │ ├── x64FPURoundMode.cpp │ │ └── x64Reg.h │ ├── Core │ │ ├── ARDecrypt.cpp │ │ ├── ARDecrypt.h │ │ ├── ActionReplay.cpp │ │ ├── ActionReplay.h │ │ ├── Analytics.cpp │ │ ├── Analytics.h │ │ ├── Boot │ │ │ ├── Boot.cpp │ │ │ ├── Boot.h │ │ │ ├── Boot_BS2Emu.cpp │ │ │ ├── Boot_WiiWAD.cpp │ │ │ ├── DolReader.cpp │ │ │ ├── DolReader.h │ │ │ ├── ElfReader.cpp │ │ │ ├── ElfReader.h │ │ │ └── ElfTypes.h │ │ ├── BootManager.cpp │ │ ├── BootManager.h │ │ ├── CMakeLists.txt │ │ ├── CommonTitles.h │ │ ├── Config │ │ │ ├── GraphicsSettings.cpp │ │ │ ├── GraphicsSettings.h │ │ │ ├── MainSettings.cpp │ │ │ ├── MainSettings.h │ │ │ ├── NetplaySettings.cpp │ │ │ ├── NetplaySettings.h │ │ │ ├── SYSCONFSettings.cpp │ │ │ ├── SYSCONFSettings.h │ │ │ ├── UISettings.cpp │ │ │ └── UISettings.h │ │ ├── ConfigLoaders │ │ │ ├── BaseConfigLoader.cpp │ │ │ ├── BaseConfigLoader.h │ │ │ ├── GameConfigLoader.cpp │ │ │ ├── GameConfigLoader.h │ │ │ ├── IsSettingSaveable.cpp │ │ │ ├── IsSettingSaveable.h │ │ │ ├── MovieConfigLoader.cpp │ │ │ ├── MovieConfigLoader.h │ │ │ ├── NetPlayConfigLoader.cpp │ │ │ └── NetPlayConfigLoader.h │ │ ├── ConfigManager.cpp │ │ ├── ConfigManager.h │ │ ├── Core.cpp │ │ ├── Core.h │ │ ├── Core.vcxproj │ │ ├── Core.vcxproj.filters │ │ ├── CoreTiming.cpp │ │ ├── CoreTiming.h │ │ ├── DSP │ │ │ ├── DSPAccelerator.cpp │ │ │ ├── DSPAccelerator.h │ │ │ ├── DSPAnalyzer.cpp │ │ │ ├── DSPAnalyzer.h │ │ │ ├── DSPAssembler.cpp │ │ │ ├── DSPAssembler.h │ │ │ ├── DSPBreakpoints.h │ │ │ ├── DSPCaptureLogger.cpp │ │ │ ├── DSPCaptureLogger.h │ │ │ ├── DSPCodeUtil.cpp │ │ │ ├── DSPCodeUtil.h │ │ │ ├── DSPCommon.h │ │ │ ├── DSPCore.cpp │ │ │ ├── DSPCore.h │ │ │ ├── DSPDisassembler.cpp │ │ │ ├── DSPDisassembler.h │ │ │ ├── DSPHWInterface.cpp │ │ │ ├── DSPHWInterface.h │ │ │ ├── DSPHost.h │ │ │ ├── DSPMemoryMap.cpp │ │ │ ├── DSPMemoryMap.h │ │ │ ├── DSPStacks.cpp │ │ │ ├── DSPStacks.h │ │ │ ├── DSPTables.cpp │ │ │ ├── DSPTables.h │ │ │ ├── Interpreter │ │ │ │ ├── DSPIntArithmetic.cpp │ │ │ │ ├── DSPIntBranch.cpp │ │ │ │ ├── DSPIntCCUtil.cpp │ │ │ │ ├── DSPIntCCUtil.h │ │ │ │ ├── DSPIntExtOps.cpp │ │ │ │ ├── DSPIntExtOps.h │ │ │ │ ├── DSPIntLoadStore.cpp │ │ │ │ ├── DSPIntMisc.cpp │ │ │ │ ├── DSPIntMultiplier.cpp │ │ │ │ ├── DSPIntTables.cpp │ │ │ │ ├── DSPIntTables.h │ │ │ │ ├── DSPIntUtil.h │ │ │ │ ├── DSPInterpreter.cpp │ │ │ │ └── DSPInterpreter.h │ │ │ ├── Jit │ │ │ │ ├── DSPEmitterBase.cpp │ │ │ │ ├── DSPEmitterBase.h │ │ │ │ └── x64 │ │ │ │ │ ├── DSPEmitter.cpp │ │ │ │ │ ├── DSPEmitter.h │ │ │ │ │ ├── DSPJitArithmetic.cpp │ │ │ │ │ ├── DSPJitBranch.cpp │ │ │ │ │ ├── DSPJitCCUtil.cpp │ │ │ │ │ ├── DSPJitExtOps.cpp │ │ │ │ │ ├── DSPJitLoadStore.cpp │ │ │ │ │ ├── DSPJitMisc.cpp │ │ │ │ │ ├── DSPJitMultiplier.cpp │ │ │ │ │ ├── DSPJitRegCache.cpp │ │ │ │ │ ├── DSPJitRegCache.h │ │ │ │ │ ├── DSPJitTables.cpp │ │ │ │ │ ├── DSPJitTables.h │ │ │ │ │ └── DSPJitUtil.cpp │ │ │ ├── LabelMap.cpp │ │ │ └── LabelMap.h │ │ ├── DSPEmulator.cpp │ │ ├── DSPEmulator.h │ │ ├── Debugger │ │ │ ├── Debugger_SymbolMap.cpp │ │ │ ├── Debugger_SymbolMap.h │ │ │ ├── Dump.cpp │ │ │ ├── Dump.h │ │ │ ├── GCELF.h │ │ │ ├── PPCDebugInterface.cpp │ │ │ ├── PPCDebugInterface.h │ │ │ ├── RSO.cpp │ │ │ └── RSO.h │ │ ├── FifoPlayer │ │ │ ├── FifoAnalyzer.cpp │ │ │ ├── FifoAnalyzer.h │ │ │ ├── FifoDataFile.cpp │ │ │ ├── FifoDataFile.h │ │ │ ├── FifoPlaybackAnalyzer.cpp │ │ │ ├── FifoPlaybackAnalyzer.h │ │ │ ├── FifoPlayer.cpp │ │ │ ├── FifoPlayer.h │ │ │ ├── FifoRecordAnalyzer.cpp │ │ │ ├── FifoRecordAnalyzer.h │ │ │ ├── FifoRecorder.cpp │ │ │ └── FifoRecorder.h │ │ ├── GeckoCode.cpp │ │ ├── GeckoCode.h │ │ ├── GeckoCodeConfig.cpp │ │ ├── GeckoCodeConfig.h │ │ ├── HLE │ │ │ ├── HLE.cpp │ │ │ ├── HLE.h │ │ │ ├── HLE_Misc.cpp │ │ │ ├── HLE_Misc.h │ │ │ ├── HLE_OS.cpp │ │ │ ├── HLE_OS.h │ │ │ ├── HLE_VarArgs.cpp │ │ │ └── HLE_VarArgs.h │ │ ├── HW │ │ │ ├── AddressSpace.cpp │ │ │ ├── AddressSpace.h │ │ │ ├── AudioInterface.cpp │ │ │ ├── AudioInterface.h │ │ │ ├── CPU.cpp │ │ │ ├── CPU.h │ │ │ ├── DSP.cpp │ │ │ ├── DSP.h │ │ │ ├── DSPHLE │ │ │ │ ├── DSPHLE.cpp │ │ │ │ ├── DSPHLE.h │ │ │ │ ├── MailHandler.cpp │ │ │ │ ├── MailHandler.h │ │ │ │ └── UCodes │ │ │ │ │ ├── AX.cpp │ │ │ │ │ ├── AX.h │ │ │ │ │ ├── AXStructs.h │ │ │ │ │ ├── AXVoice.h │ │ │ │ │ ├── AXWii.cpp │ │ │ │ │ ├── AXWii.h │ │ │ │ │ ├── CARD.cpp │ │ │ │ │ ├── CARD.h │ │ │ │ │ ├── GBA.cpp │ │ │ │ │ ├── GBA.h │ │ │ │ │ ├── INIT.cpp │ │ │ │ │ ├── INIT.h │ │ │ │ │ ├── ROM.cpp │ │ │ │ │ ├── ROM.h │ │ │ │ │ ├── UCodes.cpp │ │ │ │ │ ├── UCodes.h │ │ │ │ │ ├── Zelda.cpp │ │ │ │ │ └── Zelda.h │ │ │ ├── DSPLLE │ │ │ │ ├── DSPDebugInterface.cpp │ │ │ │ ├── DSPDebugInterface.h │ │ │ │ ├── DSPHost.cpp │ │ │ │ ├── DSPLLE.cpp │ │ │ │ ├── DSPLLE.h │ │ │ │ ├── DSPLLEGlobals.cpp │ │ │ │ ├── DSPLLEGlobals.h │ │ │ │ ├── DSPSymbols.cpp │ │ │ │ └── DSPSymbols.h │ │ │ ├── DVD │ │ │ │ ├── DVDInterface.cpp │ │ │ │ ├── DVDInterface.h │ │ │ │ ├── DVDMath.cpp │ │ │ │ ├── DVDMath.h │ │ │ │ ├── DVDThread.cpp │ │ │ │ ├── DVDThread.h │ │ │ │ ├── FileMonitor.cpp │ │ │ │ └── FileMonitor.h │ │ │ ├── EXI │ │ │ │ ├── BBA-TAP │ │ │ │ │ ├── TAP_Apple.cpp │ │ │ │ │ ├── TAP_Unix.cpp │ │ │ │ │ ├── TAP_Win32.cpp │ │ │ │ │ └── TAP_Win32.h │ │ │ │ ├── EXI.cpp │ │ │ │ ├── EXI.h │ │ │ │ ├── EXI_Channel.cpp │ │ │ │ ├── EXI_Channel.h │ │ │ │ ├── EXI_Device.cpp │ │ │ │ ├── EXI_Device.h │ │ │ │ ├── EXI_DeviceAD16.cpp │ │ │ │ ├── EXI_DeviceAD16.h │ │ │ │ ├── EXI_DeviceAGP.cpp │ │ │ │ ├── EXI_DeviceAGP.h │ │ │ │ ├── EXI_DeviceDummy.cpp │ │ │ │ ├── EXI_DeviceDummy.h │ │ │ │ ├── EXI_DeviceEthernet.cpp │ │ │ │ ├── EXI_DeviceEthernet.h │ │ │ │ ├── EXI_DeviceGecko.cpp │ │ │ │ ├── EXI_DeviceGecko.h │ │ │ │ ├── EXI_DeviceIPL.cpp │ │ │ │ ├── EXI_DeviceIPL.h │ │ │ │ ├── EXI_DeviceMemoryCard.cpp │ │ │ │ ├── EXI_DeviceMemoryCard.h │ │ │ │ ├── EXI_DeviceMic.cpp │ │ │ │ └── EXI_DeviceMic.h │ │ │ ├── GCKeyboard.cpp │ │ │ ├── GCKeyboard.h │ │ │ ├── GCKeyboardEmu.cpp │ │ │ ├── GCKeyboardEmu.h │ │ │ ├── GCMemcard │ │ │ │ ├── GCIFile.cpp │ │ │ │ ├── GCIFile.h │ │ │ │ ├── GCMemcard.cpp │ │ │ │ ├── GCMemcard.h │ │ │ │ ├── GCMemcardDirectory.cpp │ │ │ │ ├── GCMemcardDirectory.h │ │ │ │ ├── GCMemcardRaw.cpp │ │ │ │ └── GCMemcardRaw.h │ │ │ ├── GCPad.cpp │ │ │ ├── GCPad.h │ │ │ ├── GCPadEmu.cpp │ │ │ ├── GCPadEmu.h │ │ │ ├── GPFifo.cpp │ │ │ ├── GPFifo.h │ │ │ ├── HW.cpp │ │ │ ├── HW.h │ │ │ ├── MMIO.cpp │ │ │ ├── MMIO.h │ │ │ ├── MMIOHandlers.h │ │ │ ├── Memmap.cpp │ │ │ ├── Memmap.h │ │ │ ├── MemoryInterface.cpp │ │ │ ├── MemoryInterface.h │ │ │ ├── ProcessorInterface.cpp │ │ │ ├── ProcessorInterface.h │ │ │ ├── SI │ │ │ │ ├── SI.cpp │ │ │ │ ├── SI.h │ │ │ │ ├── SI_Device.cpp │ │ │ │ ├── SI_Device.h │ │ │ │ ├── SI_DeviceDanceMat.cpp │ │ │ │ ├── SI_DeviceDanceMat.h │ │ │ │ ├── SI_DeviceGBA.cpp │ │ │ │ ├── SI_DeviceGBA.h │ │ │ │ ├── SI_DeviceGCAdapter.cpp │ │ │ │ ├── SI_DeviceGCAdapter.h │ │ │ │ ├── SI_DeviceGCController.cpp │ │ │ │ ├── SI_DeviceGCController.h │ │ │ │ ├── SI_DeviceGCSteeringWheel.cpp │ │ │ │ ├── SI_DeviceGCSteeringWheel.h │ │ │ │ ├── SI_DeviceKeyboard.cpp │ │ │ │ ├── SI_DeviceKeyboard.h │ │ │ │ ├── SI_DeviceNull.cpp │ │ │ │ └── SI_DeviceNull.h │ │ │ ├── Sram.cpp │ │ │ ├── Sram.h │ │ │ ├── StreamADPCM.cpp │ │ │ ├── StreamADPCM.h │ │ │ ├── SystemTimers.cpp │ │ │ ├── SystemTimers.h │ │ │ ├── VideoInterface.cpp │ │ │ ├── VideoInterface.h │ │ │ ├── WII_IPC.cpp │ │ │ ├── WII_IPC.h │ │ │ ├── WiiSave.cpp │ │ │ ├── WiiSave.h │ │ │ ├── WiiSaveStructs.h │ │ │ ├── Wiimote.cpp │ │ │ ├── Wiimote.h │ │ │ ├── WiimoteCommon │ │ │ │ ├── DataReport.cpp │ │ │ │ ├── DataReport.h │ │ │ │ ├── WiimoteConstants.h │ │ │ │ ├── WiimoteHid.h │ │ │ │ └── WiimoteReport.h │ │ │ ├── WiimoteEmu │ │ │ │ ├── Camera.cpp │ │ │ │ ├── Camera.h │ │ │ │ ├── Dynamics.cpp │ │ │ │ ├── Dynamics.h │ │ │ │ ├── EmuSubroutines.cpp │ │ │ │ ├── Encryption.cpp │ │ │ │ ├── Encryption.h │ │ │ │ ├── Extension │ │ │ │ │ ├── Classic.cpp │ │ │ │ │ ├── Classic.h │ │ │ │ │ ├── DrawsomeTablet.cpp │ │ │ │ │ ├── DrawsomeTablet.h │ │ │ │ │ ├── Drums.cpp │ │ │ │ │ ├── Drums.h │ │ │ │ │ ├── Extension.cpp │ │ │ │ │ ├── Extension.h │ │ │ │ │ ├── Guitar.cpp │ │ │ │ │ ├── Guitar.h │ │ │ │ │ ├── Nunchuk.cpp │ │ │ │ │ ├── Nunchuk.h │ │ │ │ │ ├── TaTaCon.cpp │ │ │ │ │ ├── TaTaCon.h │ │ │ │ │ ├── Turntable.cpp │ │ │ │ │ ├── Turntable.h │ │ │ │ │ ├── UDrawTablet.cpp │ │ │ │ │ └── UDrawTablet.h │ │ │ │ ├── ExtensionPort.cpp │ │ │ │ ├── ExtensionPort.h │ │ │ │ ├── I2CBus.cpp │ │ │ │ ├── I2CBus.h │ │ │ │ ├── MotionPlus.cpp │ │ │ │ ├── MotionPlus.h │ │ │ │ ├── Speaker.cpp │ │ │ │ ├── Speaker.h │ │ │ │ ├── WiimoteEmu.cpp │ │ │ │ └── WiimoteEmu.h │ │ │ └── WiimoteReal │ │ │ │ ├── IOAndroid.cpp │ │ │ │ ├── IOAndroid.h │ │ │ │ ├── IODummy.h │ │ │ │ ├── IOLinux.cpp │ │ │ │ ├── IOLinux.h │ │ │ │ ├── IOWin.cpp │ │ │ │ ├── IOWin.h │ │ │ │ ├── IOdarwin.h │ │ │ │ ├── IOdarwin.mm │ │ │ │ ├── IOdarwin_private.h │ │ │ │ ├── IOhidapi.cpp │ │ │ │ ├── IOhidapi.h │ │ │ │ ├── WiimoteReal.cpp │ │ │ │ └── WiimoteReal.h │ │ ├── Host.h │ │ ├── HotkeyManager.cpp │ │ ├── HotkeyManager.h │ │ ├── IOS │ │ │ ├── DI │ │ │ │ ├── DI.cpp │ │ │ │ └── DI.h │ │ │ ├── Device.cpp │ │ │ ├── Device.h │ │ │ ├── DeviceStub.cpp │ │ │ ├── DeviceStub.h │ │ │ ├── ES │ │ │ │ ├── ES.cpp │ │ │ │ ├── ES.h │ │ │ │ ├── Formats.cpp │ │ │ │ ├── Formats.h │ │ │ │ ├── Identity.cpp │ │ │ │ ├── NandUtils.cpp │ │ │ │ ├── TitleContents.cpp │ │ │ │ ├── TitleInformation.cpp │ │ │ │ ├── TitleManagement.cpp │ │ │ │ └── Views.cpp │ │ │ ├── FS │ │ │ │ ├── FileSystem.cpp │ │ │ │ ├── FileSystem.h │ │ │ │ ├── FileSystemProxy.cpp │ │ │ │ ├── FileSystemProxy.h │ │ │ │ └── HostBackend │ │ │ │ │ ├── FS.cpp │ │ │ │ │ ├── FS.h │ │ │ │ │ └── File.cpp │ │ │ ├── IOS.cpp │ │ │ ├── IOS.h │ │ │ ├── IOSC.cpp │ │ │ ├── IOSC.h │ │ │ ├── MIOS.cpp │ │ │ ├── MIOS.h │ │ │ ├── Network │ │ │ │ ├── ICMP.h │ │ │ │ ├── ICMPLin.cpp │ │ │ │ ├── ICMPWin.cpp │ │ │ │ ├── IP │ │ │ │ │ ├── Top.cpp │ │ │ │ │ └── Top.h │ │ │ │ ├── KD │ │ │ │ │ ├── NWC24Config.cpp │ │ │ │ │ ├── NWC24Config.h │ │ │ │ │ ├── NetKDRequest.cpp │ │ │ │ │ ├── NetKDRequest.h │ │ │ │ │ ├── NetKDTime.cpp │ │ │ │ │ └── NetKDTime.h │ │ │ │ ├── MACUtils.cpp │ │ │ │ ├── MACUtils.h │ │ │ │ ├── NCD │ │ │ │ │ ├── Manage.cpp │ │ │ │ │ ├── Manage.h │ │ │ │ │ ├── WiiNetConfig.cpp │ │ │ │ │ └── WiiNetConfig.h │ │ │ │ ├── SSL.cpp │ │ │ │ ├── SSL.h │ │ │ │ ├── Socket.cpp │ │ │ │ ├── Socket.h │ │ │ │ └── WD │ │ │ │ │ ├── Command.cpp │ │ │ │ │ └── Command.h │ │ │ ├── SDIO │ │ │ │ ├── SDIOSlot0.cpp │ │ │ │ └── SDIOSlot0.h │ │ │ ├── STM │ │ │ │ ├── STM.cpp │ │ │ │ └── STM.h │ │ │ ├── USB │ │ │ │ ├── Bluetooth │ │ │ │ │ ├── BTBase.cpp │ │ │ │ │ ├── BTBase.h │ │ │ │ │ ├── BTEmu.cpp │ │ │ │ │ ├── BTEmu.h │ │ │ │ │ ├── BTReal.cpp │ │ │ │ │ ├── BTReal.h │ │ │ │ │ ├── BTStub.cpp │ │ │ │ │ ├── BTStub.h │ │ │ │ │ ├── WiimoteDevice.cpp │ │ │ │ │ ├── WiimoteDevice.h │ │ │ │ │ ├── WiimoteHIDAttr.cpp │ │ │ │ │ ├── WiimoteHIDAttr.h │ │ │ │ │ ├── hci.h │ │ │ │ │ └── l2cap.h │ │ │ │ ├── Common.cpp │ │ │ │ ├── Common.h │ │ │ │ ├── Host.cpp │ │ │ │ ├── Host.h │ │ │ │ ├── LibusbDevice.cpp │ │ │ │ ├── LibusbDevice.h │ │ │ │ ├── OH0 │ │ │ │ │ ├── OH0.cpp │ │ │ │ │ ├── OH0.h │ │ │ │ │ ├── OH0Device.cpp │ │ │ │ │ └── OH0Device.h │ │ │ │ ├── USBV0.cpp │ │ │ │ ├── USBV0.h │ │ │ │ ├── USBV4.cpp │ │ │ │ ├── USBV4.h │ │ │ │ ├── USBV5.cpp │ │ │ │ ├── USBV5.h │ │ │ │ ├── USB_HID │ │ │ │ │ ├── HIDv4.cpp │ │ │ │ │ ├── HIDv4.h │ │ │ │ │ ├── HIDv5.cpp │ │ │ │ │ └── HIDv5.h │ │ │ │ ├── USB_KBD.cpp │ │ │ │ ├── USB_KBD.h │ │ │ │ └── USB_VEN │ │ │ │ │ ├── VEN.cpp │ │ │ │ │ └── VEN.h │ │ │ ├── Uids.h │ │ │ ├── VersionInfo.cpp │ │ │ ├── VersionInfo.h │ │ │ └── WFS │ │ │ │ ├── WFSI.cpp │ │ │ │ ├── WFSI.h │ │ │ │ ├── WFSSRV.cpp │ │ │ │ └── WFSSRV.h │ │ ├── LibusbUtils.cpp │ │ ├── LibusbUtils.h │ │ ├── MachineContext.h │ │ ├── MemTools.cpp │ │ ├── MemTools.h │ │ ├── MemoryWatcher.cpp │ │ ├── MemoryWatcher.h │ │ ├── Movie.cpp │ │ ├── Movie.h │ │ ├── NetPlayClient.cpp │ │ ├── NetPlayClient.h │ │ ├── NetPlayProto.h │ │ ├── NetPlayServer.cpp │ │ ├── NetPlayServer.h │ │ ├── PatchEngine.cpp │ │ ├── PatchEngine.h │ │ ├── PowerPC │ │ │ ├── BreakPoints.cpp │ │ │ ├── BreakPoints.h │ │ │ ├── CPUCoreBase.h │ │ │ ├── CachedInterpreter │ │ │ │ ├── CachedInterpreter.cpp │ │ │ │ ├── CachedInterpreter.h │ │ │ │ ├── InterpreterBlockCache.cpp │ │ │ │ └── InterpreterBlockCache.h │ │ │ ├── ConditionRegister.cpp │ │ │ ├── ConditionRegister.h │ │ │ ├── GDBStub.cpp │ │ │ ├── GDBStub.h │ │ │ ├── Gekko.h │ │ │ ├── Interpreter │ │ │ │ ├── ExceptionUtils.h │ │ │ │ ├── Interpreter.cpp │ │ │ │ ├── Interpreter.h │ │ │ │ ├── Interpreter_Branch.cpp │ │ │ │ ├── Interpreter_FPUtils.h │ │ │ │ ├── Interpreter_FloatingPoint.cpp │ │ │ │ ├── Interpreter_Integer.cpp │ │ │ │ ├── Interpreter_LoadStore.cpp │ │ │ │ ├── Interpreter_LoadStorePaired.cpp │ │ │ │ ├── Interpreter_Paired.cpp │ │ │ │ ├── Interpreter_SystemRegisters.cpp │ │ │ │ └── Interpreter_Tables.cpp │ │ │ ├── Jit64 │ │ │ │ ├── Jit.cpp │ │ │ │ ├── Jit.h │ │ │ │ ├── Jit64_Tables.cpp │ │ │ │ ├── JitAsm.cpp │ │ │ │ ├── JitAsm.h │ │ │ │ ├── Jit_Branch.cpp │ │ │ │ ├── Jit_FloatingPoint.cpp │ │ │ │ ├── Jit_Integer.cpp │ │ │ │ ├── Jit_LoadStore.cpp │ │ │ │ ├── Jit_LoadStoreFloating.cpp │ │ │ │ ├── Jit_LoadStorePaired.cpp │ │ │ │ ├── Jit_Paired.cpp │ │ │ │ ├── Jit_SystemRegisters.cpp │ │ │ │ └── RegCache │ │ │ │ │ ├── CachedReg.h │ │ │ │ │ ├── FPURegCache.cpp │ │ │ │ │ ├── FPURegCache.h │ │ │ │ │ ├── GPRRegCache.cpp │ │ │ │ │ ├── GPRRegCache.h │ │ │ │ │ ├── JitRegCache.cpp │ │ │ │ │ ├── JitRegCache.h │ │ │ │ │ └── RCMode.h │ │ │ ├── Jit64Common │ │ │ │ ├── BlockCache.cpp │ │ │ │ ├── BlockCache.h │ │ │ │ ├── ConstantPool.cpp │ │ │ │ ├── ConstantPool.h │ │ │ │ ├── EmuCodeBlock.cpp │ │ │ │ ├── EmuCodeBlock.h │ │ │ │ ├── FarCodeCache.cpp │ │ │ │ ├── FarCodeCache.h │ │ │ │ ├── Jit64AsmCommon.cpp │ │ │ │ ├── Jit64AsmCommon.h │ │ │ │ ├── Jit64Constants.h │ │ │ │ ├── Jit64PowerPCState.h │ │ │ │ ├── TrampolineCache.cpp │ │ │ │ ├── TrampolineCache.h │ │ │ │ └── TrampolineInfo.h │ │ │ ├── JitArm64 │ │ │ │ ├── Jit.cpp │ │ │ │ ├── Jit.h │ │ │ │ ├── JitArm64Cache.cpp │ │ │ │ ├── JitArm64Cache.h │ │ │ │ ├── JitArm64_BackPatch.cpp │ │ │ │ ├── JitArm64_Branch.cpp │ │ │ │ ├── JitArm64_FloatingPoint.cpp │ │ │ │ ├── JitArm64_Integer.cpp │ │ │ │ ├── JitArm64_LoadStore.cpp │ │ │ │ ├── JitArm64_LoadStoreFloating.cpp │ │ │ │ ├── JitArm64_LoadStorePaired.cpp │ │ │ │ ├── JitArm64_Paired.cpp │ │ │ │ ├── JitArm64_RegCache.cpp │ │ │ │ ├── JitArm64_RegCache.h │ │ │ │ ├── JitArm64_SystemRegisters.cpp │ │ │ │ ├── JitArm64_Tables.cpp │ │ │ │ ├── JitAsm.cpp │ │ │ │ ├── Jit_Util.cpp │ │ │ │ └── Jit_Util.h │ │ │ ├── JitArmCommon │ │ │ │ └── BackPatch.h │ │ │ ├── JitCommon │ │ │ │ ├── JitAsmCommon.cpp │ │ │ │ ├── JitAsmCommon.h │ │ │ │ ├── JitBase.cpp │ │ │ │ ├── JitBase.h │ │ │ │ ├── JitCache.cpp │ │ │ │ └── JitCache.h │ │ │ ├── JitInterface.cpp │ │ │ ├── JitInterface.h │ │ │ ├── MMU.cpp │ │ │ ├── MMU.h │ │ │ ├── PPCAnalyst.cpp │ │ │ ├── PPCAnalyst.h │ │ │ ├── PPCCache.cpp │ │ │ ├── PPCCache.h │ │ │ ├── PPCSymbolDB.cpp │ │ │ ├── PPCSymbolDB.h │ │ │ ├── PPCTables.cpp │ │ │ ├── PPCTables.h │ │ │ ├── PowerPC.cpp │ │ │ ├── PowerPC.h │ │ │ ├── Profiler.h │ │ │ └── SignatureDB │ │ │ │ ├── CSVSignatureDB.cpp │ │ │ │ ├── CSVSignatureDB.h │ │ │ │ ├── DSYSignatureDB.cpp │ │ │ │ ├── DSYSignatureDB.h │ │ │ │ ├── MEGASignatureDB.cpp │ │ │ │ ├── MEGASignatureDB.h │ │ │ │ ├── SignatureDB.cpp │ │ │ │ └── SignatureDB.h │ │ ├── State.cpp │ │ ├── State.h │ │ ├── SysConf.cpp │ │ ├── SysConf.h │ │ ├── TitleDatabase.cpp │ │ ├── TitleDatabase.h │ │ ├── WiiRoot.cpp │ │ ├── WiiRoot.h │ │ ├── WiiUtils.cpp │ │ └── WiiUtils.h │ ├── DiscIO │ │ ├── Blob.cpp │ │ ├── Blob.h │ │ ├── CISOBlob.cpp │ │ ├── CISOBlob.h │ │ ├── CMakeLists.txt │ │ ├── CompressedBlob.cpp │ │ ├── CompressedBlob.h │ │ ├── DirectoryBlob.cpp │ │ ├── DirectoryBlob.h │ │ ├── DiscExtractor.cpp │ │ ├── DiscExtractor.h │ │ ├── DiscIO.vcxproj │ │ ├── DiscIO.vcxproj.filters │ │ ├── DiscScrubber.cpp │ │ ├── DiscScrubber.h │ │ ├── DriveBlob.cpp │ │ ├── DriveBlob.h │ │ ├── Enums.cpp │ │ ├── Enums.h │ │ ├── FileBlob.cpp │ │ ├── FileBlob.h │ │ ├── FileSystemGCWii.cpp │ │ ├── FileSystemGCWii.h │ │ ├── Filesystem.cpp │ │ ├── Filesystem.h │ │ ├── NANDImporter.cpp │ │ ├── NANDImporter.h │ │ ├── TGCBlob.cpp │ │ ├── TGCBlob.h │ │ ├── Volume.cpp │ │ ├── Volume.h │ │ ├── VolumeFileBlobReader.cpp │ │ ├── VolumeFileBlobReader.h │ │ ├── VolumeGC.cpp │ │ ├── VolumeGC.h │ │ ├── VolumeVerifier.cpp │ │ ├── VolumeVerifier.h │ │ ├── VolumeWad.cpp │ │ ├── VolumeWad.h │ │ ├── VolumeWii.cpp │ │ ├── VolumeWii.h │ │ ├── WbfsBlob.cpp │ │ ├── WbfsBlob.h │ │ ├── WiiSaveBanner.cpp │ │ └── WiiSaveBanner.h │ ├── DolphinNoGUI │ │ ├── CMakeLists.txt │ │ ├── MainNoGUI.cpp │ │ ├── Platform.cpp │ │ ├── Platform.h │ │ ├── PlatformHeadless.cpp │ │ └── PlatformX11.cpp │ ├── DolphinQt │ │ ├── AboutDialog.cpp │ │ ├── AboutDialog.h │ │ ├── CMakeLists.txt │ │ ├── CheatsManager.cpp │ │ ├── CheatsManager.h │ │ ├── Config │ │ │ ├── ARCodeWidget.cpp │ │ │ ├── ARCodeWidget.h │ │ │ ├── CheatCodeEditor.cpp │ │ │ ├── CheatCodeEditor.h │ │ │ ├── CheatWarningWidget.cpp │ │ │ ├── CheatWarningWidget.h │ │ │ ├── ControllerInterface │ │ │ │ ├── ControllerInterfaceWindow.cpp │ │ │ │ ├── ControllerInterfaceWindow.h │ │ │ │ ├── DualShockUDPClientWidget.cpp │ │ │ │ └── DualShockUDPClientWidget.h │ │ │ ├── ControllersWindow.cpp │ │ │ ├── ControllersWindow.h │ │ │ ├── FilesystemWidget.cpp │ │ │ ├── FilesystemWidget.h │ │ │ ├── GameConfigEdit.cpp │ │ │ ├── GameConfigEdit.h │ │ │ ├── GameConfigHighlighter.cpp │ │ │ ├── GameConfigHighlighter.h │ │ │ ├── GameConfigWidget.cpp │ │ │ ├── GameConfigWidget.h │ │ │ ├── GeckoCodeWidget.cpp │ │ │ ├── GeckoCodeWidget.h │ │ │ ├── Graphics │ │ │ │ ├── AdvancedWidget.cpp │ │ │ │ ├── AdvancedWidget.h │ │ │ │ ├── EnhancementsWidget.cpp │ │ │ │ ├── EnhancementsWidget.h │ │ │ │ ├── GeneralWidget.cpp │ │ │ │ ├── GeneralWidget.h │ │ │ │ ├── GraphicsBool.cpp │ │ │ │ ├── GraphicsBool.h │ │ │ │ ├── GraphicsChoice.cpp │ │ │ │ ├── GraphicsChoice.h │ │ │ │ ├── GraphicsInteger.cpp │ │ │ │ ├── GraphicsInteger.h │ │ │ │ ├── GraphicsRadio.cpp │ │ │ │ ├── GraphicsRadio.h │ │ │ │ ├── GraphicsSlider.cpp │ │ │ │ ├── GraphicsSlider.h │ │ │ │ ├── GraphicsWidget.cpp │ │ │ │ ├── GraphicsWidget.h │ │ │ │ ├── GraphicsWindow.cpp │ │ │ │ ├── GraphicsWindow.h │ │ │ │ ├── HacksWidget.cpp │ │ │ │ ├── HacksWidget.h │ │ │ │ ├── PostProcessingConfigWindow.cpp │ │ │ │ ├── PostProcessingConfigWindow.h │ │ │ │ ├── SoftwareRendererWidget.cpp │ │ │ │ └── SoftwareRendererWidget.h │ │ │ ├── InfoWidget.cpp │ │ │ ├── InfoWidget.h │ │ │ ├── LogConfigWidget.cpp │ │ │ ├── LogConfigWidget.h │ │ │ ├── LogWidget.cpp │ │ │ ├── LogWidget.h │ │ │ ├── Mapping │ │ │ │ ├── GCKeyboardEmu.cpp │ │ │ │ ├── GCKeyboardEmu.h │ │ │ │ ├── GCMicrophone.cpp │ │ │ │ ├── GCMicrophone.h │ │ │ │ ├── GCPadEmu.cpp │ │ │ │ ├── GCPadEmu.h │ │ │ │ ├── GCPadWiiUConfigDialog.cpp │ │ │ │ ├── GCPadWiiUConfigDialog.h │ │ │ │ ├── Hotkey3D.cpp │ │ │ │ ├── Hotkey3D.h │ │ │ │ ├── HotkeyControllerProfile.cpp │ │ │ │ ├── HotkeyControllerProfile.h │ │ │ │ ├── HotkeyDebugging.cpp │ │ │ │ ├── HotkeyDebugging.h │ │ │ │ ├── HotkeyGeneral.cpp │ │ │ │ ├── HotkeyGeneral.h │ │ │ │ ├── HotkeyGraphics.cpp │ │ │ │ ├── HotkeyGraphics.h │ │ │ │ ├── HotkeyStates.cpp │ │ │ │ ├── HotkeyStates.h │ │ │ │ ├── HotkeyStatesOther.cpp │ │ │ │ ├── HotkeyStatesOther.h │ │ │ │ ├── HotkeyTAS.cpp │ │ │ │ ├── HotkeyTAS.h │ │ │ │ ├── HotkeyWii.cpp │ │ │ │ ├── HotkeyWii.h │ │ │ │ ├── IOWindow.cpp │ │ │ │ ├── IOWindow.h │ │ │ │ ├── MappingButton.cpp │ │ │ │ ├── MappingButton.h │ │ │ │ ├── MappingCommon.cpp │ │ │ │ ├── MappingCommon.h │ │ │ │ ├── MappingIndicator.cpp │ │ │ │ ├── MappingIndicator.h │ │ │ │ ├── MappingNumeric.cpp │ │ │ │ ├── MappingNumeric.h │ │ │ │ ├── MappingWidget.cpp │ │ │ │ ├── MappingWidget.h │ │ │ │ ├── MappingWindow.cpp │ │ │ │ ├── MappingWindow.h │ │ │ │ ├── WiimoteEmuExtension.cpp │ │ │ │ ├── WiimoteEmuExtension.h │ │ │ │ ├── WiimoteEmuGeneral.cpp │ │ │ │ ├── WiimoteEmuGeneral.h │ │ │ │ ├── WiimoteEmuMotionControl.cpp │ │ │ │ ├── WiimoteEmuMotionControl.h │ │ │ │ ├── WiimoteEmuMotionControlIMU.cpp │ │ │ │ └── WiimoteEmuMotionControlIMU.h │ │ │ ├── NewPatchDialog.cpp │ │ │ ├── NewPatchDialog.h │ │ │ ├── PatchesWidget.cpp │ │ │ ├── PatchesWidget.h │ │ │ ├── PropertiesDialog.cpp │ │ │ ├── PropertiesDialog.h │ │ │ ├── SettingsWindow.cpp │ │ │ ├── SettingsWindow.h │ │ │ ├── VerifyWidget.cpp │ │ │ └── VerifyWidget.h │ │ ├── Debugger │ │ │ ├── BreakpointWidget.cpp │ │ │ ├── BreakpointWidget.h │ │ │ ├── CodeViewWidget.cpp │ │ │ ├── CodeViewWidget.h │ │ │ ├── CodeWidget.cpp │ │ │ ├── CodeWidget.h │ │ │ ├── JITWidget.cpp │ │ │ ├── JITWidget.h │ │ │ ├── MemoryViewWidget.cpp │ │ │ ├── MemoryViewWidget.h │ │ │ ├── MemoryWidget.cpp │ │ │ ├── MemoryWidget.h │ │ │ ├── NewBreakpointDialog.cpp │ │ │ ├── NewBreakpointDialog.h │ │ │ ├── PatchInstructionDialog.cpp │ │ │ ├── PatchInstructionDialog.h │ │ │ ├── RegisterColumn.cpp │ │ │ ├── RegisterColumn.h │ │ │ ├── RegisterWidget.cpp │ │ │ ├── RegisterWidget.h │ │ │ ├── WatchWidget.cpp │ │ │ └── WatchWidget.h │ │ ├── DiscordHandler.cpp │ │ ├── DiscordHandler.h │ │ ├── DiscordJoinRequestDialog.cpp │ │ ├── DiscordJoinRequestDialog.h │ │ ├── DolphinQt.manifest │ │ ├── DolphinQt.rc │ │ ├── DolphinQt.vcxproj │ │ ├── DolphinQt.vcxproj.user │ │ ├── FIFO │ │ │ ├── FIFOAnalyzer.cpp │ │ │ ├── FIFOAnalyzer.h │ │ │ ├── FIFOPlayerWindow.cpp │ │ │ └── FIFOPlayerWindow.h │ │ ├── GCMemcardManager.cpp │ │ ├── GCMemcardManager.h │ │ ├── GameList │ │ │ ├── GameList.cpp │ │ │ ├── GameList.h │ │ │ ├── GameListModel.cpp │ │ │ ├── GameListModel.h │ │ │ ├── GameTracker.cpp │ │ │ ├── GameTracker.h │ │ │ ├── GridProxyModel.cpp │ │ │ ├── GridProxyModel.h │ │ │ ├── ListProxyModel.cpp │ │ │ └── ListProxyModel.h │ │ ├── Host.cpp │ │ ├── Host.h │ │ ├── HotkeyScheduler.cpp │ │ ├── HotkeyScheduler.h │ │ ├── Info.plist.in │ │ ├── Main.cpp │ │ ├── MainWindow.cpp │ │ ├── MainWindow.h │ │ ├── MenuBar.cpp │ │ ├── MenuBar.h │ │ ├── NetPlay │ │ │ ├── ChunkedProgressDialog.cpp │ │ │ ├── ChunkedProgressDialog.h │ │ │ ├── GameListDialog.cpp │ │ │ ├── GameListDialog.h │ │ │ ├── MD5Dialog.cpp │ │ │ ├── MD5Dialog.h │ │ │ ├── NetPlayBrowser.cpp │ │ │ ├── NetPlayBrowser.h │ │ │ ├── NetPlayDialog.cpp │ │ │ ├── NetPlayDialog.h │ │ │ ├── NetPlaySetupDialog.cpp │ │ │ ├── NetPlaySetupDialog.h │ │ │ ├── PadMappingDialog.cpp │ │ │ └── PadMappingDialog.h │ │ ├── QtUtils │ │ │ ├── AspectRatioWidget.cpp │ │ │ ├── AspectRatioWidget.h │ │ │ ├── BlockUserInputFilter.cpp │ │ │ ├── BlockUserInputFilter.h │ │ │ ├── DoubleClickEventFilter.cpp │ │ │ ├── DoubleClickEventFilter.h │ │ │ ├── ElidedButton.cpp │ │ │ ├── ElidedButton.h │ │ │ ├── FileOpenEventFilter.cpp │ │ │ ├── FileOpenEventFilter.h │ │ │ ├── FlowLayout.cpp │ │ │ ├── FlowLayout.h │ │ │ ├── ImageConverter.cpp │ │ │ ├── ImageConverter.h │ │ │ ├── ModalMessageBox.cpp │ │ │ ├── ModalMessageBox.h │ │ │ ├── QueueOnObject.h │ │ │ ├── RunOnObject.h │ │ │ ├── SignalDaemon.cpp │ │ │ ├── SignalDaemon.h │ │ │ ├── WinIconHelper.cpp │ │ │ ├── WinIconHelper.h │ │ │ ├── WindowActivationEventFilter.cpp │ │ │ ├── WindowActivationEventFilter.h │ │ │ ├── WrapInScrollArea.cpp │ │ │ └── WrapInScrollArea.h │ │ ├── RenderWidget.cpp │ │ ├── RenderWidget.h │ │ ├── ResourcePackManager.cpp │ │ ├── ResourcePackManager.h │ │ ├── Resources.cpp │ │ ├── Resources.h │ │ ├── SearchBar.cpp │ │ ├── SearchBar.h │ │ ├── Settings.cpp │ │ ├── Settings.h │ │ ├── Settings │ │ │ ├── AdvancedPane.cpp │ │ │ ├── AdvancedPane.h │ │ │ ├── AudioPane.cpp │ │ │ ├── AudioPane.h │ │ │ ├── GameCubePane.cpp │ │ │ ├── GameCubePane.h │ │ │ ├── GeneralPane.cpp │ │ │ ├── GeneralPane.h │ │ │ ├── InterfacePane.cpp │ │ │ ├── InterfacePane.h │ │ │ ├── PathPane.cpp │ │ │ ├── PathPane.h │ │ │ ├── USBDeviceAddToWhitelistDialog.cpp │ │ │ ├── USBDeviceAddToWhitelistDialog.h │ │ │ ├── WiiPane.cpp │ │ │ └── WiiPane.h │ │ ├── TAS │ │ │ ├── GCTASInputWindow.cpp │ │ │ ├── GCTASInputWindow.h │ │ │ ├── IRWidget.cpp │ │ │ ├── IRWidget.h │ │ │ ├── StickWidget.cpp │ │ │ ├── StickWidget.h │ │ │ ├── TASCheckBox.cpp │ │ │ ├── TASCheckBox.h │ │ │ ├── TASInputWindow.cpp │ │ │ ├── TASInputWindow.h │ │ │ ├── WiiTASInputWindow.cpp │ │ │ └── WiiTASInputWindow.h │ │ ├── ToolBar.cpp │ │ ├── ToolBar.h │ │ ├── Translation.cpp │ │ ├── Translation.h │ │ ├── Updater.cpp │ │ ├── Updater.h │ │ ├── WiiUpdate.cpp │ │ ├── WiiUpdate.h │ │ ├── qt.conf │ │ ├── qt.conf.win │ │ └── resource.h │ ├── InputCommon │ │ ├── CMakeLists.txt │ │ ├── ControlReference │ │ │ ├── ControlReference.cpp │ │ │ ├── ControlReference.h │ │ │ ├── ExpressionParser.cpp │ │ │ ├── ExpressionParser.h │ │ │ ├── FunctionExpression.cpp │ │ │ └── FunctionExpression.h │ │ ├── ControllerEmu │ │ │ ├── Control │ │ │ │ ├── Control.cpp │ │ │ │ ├── Control.h │ │ │ │ ├── Input.cpp │ │ │ │ ├── Input.h │ │ │ │ ├── Output.cpp │ │ │ │ └── Output.h │ │ │ ├── ControlGroup │ │ │ │ ├── AnalogStick.cpp │ │ │ │ ├── AnalogStick.h │ │ │ │ ├── Attachments.cpp │ │ │ │ ├── Attachments.h │ │ │ │ ├── Buttons.cpp │ │ │ │ ├── Buttons.h │ │ │ │ ├── ControlGroup.cpp │ │ │ │ ├── ControlGroup.h │ │ │ │ ├── Cursor.cpp │ │ │ │ ├── Cursor.h │ │ │ │ ├── Force.cpp │ │ │ │ ├── Force.h │ │ │ │ ├── IMUAccelerometer.cpp │ │ │ │ ├── IMUAccelerometer.h │ │ │ │ ├── IMUCursor.cpp │ │ │ │ ├── IMUCursor.h │ │ │ │ ├── IMUGyroscope.cpp │ │ │ │ ├── IMUGyroscope.h │ │ │ │ ├── MixedTriggers.cpp │ │ │ │ ├── MixedTriggers.h │ │ │ │ ├── ModifySettingsButton.cpp │ │ │ │ ├── ModifySettingsButton.h │ │ │ │ ├── Slider.cpp │ │ │ │ ├── Slider.h │ │ │ │ ├── Tilt.cpp │ │ │ │ ├── Tilt.h │ │ │ │ ├── Triggers.cpp │ │ │ │ └── Triggers.h │ │ │ ├── ControllerEmu.cpp │ │ │ ├── ControllerEmu.h │ │ │ ├── Setting │ │ │ │ ├── NumericSetting.cpp │ │ │ │ └── NumericSetting.h │ │ │ ├── StickGate.cpp │ │ │ └── StickGate.h │ │ ├── ControllerInterface │ │ │ ├── Android │ │ │ │ ├── Android.cpp │ │ │ │ └── Android.h │ │ │ ├── ControllerInterface.cpp │ │ │ ├── ControllerInterface.h │ │ │ ├── DInput │ │ │ │ ├── DInput.cpp │ │ │ │ ├── DInput.h │ │ │ │ ├── DInput8.h │ │ │ │ ├── DInputJoystick.cpp │ │ │ │ ├── DInputJoystick.h │ │ │ │ ├── DInputKeyboardMouse.cpp │ │ │ │ ├── DInputKeyboardMouse.h │ │ │ │ ├── NamedKeys.h │ │ │ │ ├── XInputFilter.cpp │ │ │ │ └── XInputFilter.h │ │ │ ├── Device.cpp │ │ │ ├── Device.h │ │ │ ├── DualShockUDPClient │ │ │ │ ├── DualShockUDPClient.cpp │ │ │ │ ├── DualShockUDPClient.h │ │ │ │ └── DualShockUDPProto.h │ │ │ ├── ForceFeedback │ │ │ │ ├── ForceFeedbackDevice.cpp │ │ │ │ ├── ForceFeedbackDevice.h │ │ │ │ └── OSX │ │ │ │ │ ├── DirectInputAdapter.h │ │ │ │ │ └── DirectInputConstants.h │ │ │ ├── OSX │ │ │ │ ├── OSX.h │ │ │ │ ├── OSX.mm │ │ │ │ ├── OSXJoystick.h │ │ │ │ ├── OSXJoystick.mm │ │ │ │ └── RunLoopStopper.h │ │ │ ├── Pipes │ │ │ │ ├── Pipes.cpp │ │ │ │ └── Pipes.h │ │ │ ├── Quartz │ │ │ │ ├── Quartz.h │ │ │ │ ├── Quartz.mm │ │ │ │ ├── QuartzKeyboardAndMouse.h │ │ │ │ └── QuartzKeyboardAndMouse.mm │ │ │ ├── SDL │ │ │ │ ├── SDL.cpp │ │ │ │ └── SDL.h │ │ │ ├── Win32 │ │ │ │ ├── Win32.cpp │ │ │ │ └── Win32.h │ │ │ ├── XInput │ │ │ │ ├── XInput.cpp │ │ │ │ └── XInput.h │ │ │ ├── Xlib │ │ │ │ ├── XInput2.cpp │ │ │ │ └── XInput2.h │ │ │ └── evdev │ │ │ │ ├── evdev.cpp │ │ │ │ └── evdev.h │ │ ├── GCAdapter.cpp │ │ ├── GCAdapter.h │ │ ├── GCAdapter_Android.cpp │ │ ├── GCPadStatus.h │ │ ├── InputCommon.vcxproj │ │ ├── InputCommon.vcxproj.filters │ │ ├── InputConfig.cpp │ │ ├── InputConfig.h │ │ ├── InputProfile.cpp │ │ ├── InputProfile.h │ │ └── KeyboardStatus.h │ ├── MacUpdater │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── CMakeLists.txt │ │ ├── Info.plist.in │ │ ├── MacUI.mm │ │ ├── Main.storyboard │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ └── main.m │ ├── UICommon │ │ ├── AutoUpdate.cpp │ │ ├── AutoUpdate.h │ │ ├── CMakeLists.txt │ │ ├── CommandLineParse.cpp │ │ ├── CommandLineParse.h │ │ ├── Disassembler.cpp │ │ ├── Disassembler.h │ │ ├── DiscordPresence.cpp │ │ ├── DiscordPresence.h │ │ ├── GameFile.cpp │ │ ├── GameFile.h │ │ ├── GameFileCache.cpp │ │ ├── GameFileCache.h │ │ ├── NetPlayIndex.cpp │ │ ├── NetPlayIndex.h │ │ ├── ResourcePack │ │ │ ├── Manager.cpp │ │ │ ├── Manager.h │ │ │ ├── Manifest.cpp │ │ │ ├── Manifest.h │ │ │ ├── ResourcePack.cpp │ │ │ └── ResourcePack.h │ │ ├── UICommon.cpp │ │ ├── UICommon.h │ │ ├── UICommon.vcxproj │ │ ├── USBUtils.cpp │ │ ├── USBUtils.h │ │ ├── VideoUtils.cpp │ │ ├── VideoUtils.h │ │ ├── X11Utils.cpp │ │ └── X11Utils.h │ ├── UpdaterCommon │ │ ├── CMakeLists.txt │ │ ├── UI.h │ │ ├── UpdaterCommon.cpp │ │ ├── UpdaterCommon.h │ │ └── UpdaterCommon.vcxproj │ ├── VideoBackends │ │ ├── CMakeLists.txt │ │ ├── D3D │ │ │ ├── BoundingBox.cpp │ │ │ ├── BoundingBox.h │ │ │ ├── CMakeLists.txt │ │ │ ├── D3D.vcxproj │ │ │ ├── D3D.vcxproj.filters │ │ │ ├── D3DBase.cpp │ │ │ ├── D3DBase.h │ │ │ ├── D3DState.cpp │ │ │ ├── D3DState.h │ │ │ ├── DXPipeline.cpp │ │ │ ├── DXPipeline.h │ │ │ ├── DXShader.cpp │ │ │ ├── DXShader.h │ │ │ ├── DXTexture.cpp │ │ │ ├── DXTexture.h │ │ │ ├── NativeVertexFormat.cpp │ │ │ ├── PerfQuery.cpp │ │ │ ├── PerfQuery.h │ │ │ ├── Render.cpp │ │ │ ├── Render.h │ │ │ ├── SwapChain.cpp │ │ │ ├── SwapChain.h │ │ │ ├── VertexManager.cpp │ │ │ ├── VertexManager.h │ │ │ ├── VideoBackend.h │ │ │ └── main.cpp │ │ ├── D3D12 │ │ │ ├── BoundingBox.cpp │ │ │ ├── BoundingBox.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Common.h │ │ │ ├── D3D12.vcxproj │ │ │ ├── D3D12.vcxproj.filters │ │ │ ├── DXContext.cpp │ │ │ ├── DXContext.h │ │ │ ├── DXPipeline.cpp │ │ │ ├── DXPipeline.h │ │ │ ├── DXShader.cpp │ │ │ ├── DXShader.h │ │ │ ├── DXTexture.cpp │ │ │ ├── DXTexture.h │ │ │ ├── DXVertexFormat.cpp │ │ │ ├── DXVertexFormat.h │ │ │ ├── DescriptorAllocator.cpp │ │ │ ├── DescriptorAllocator.h │ │ │ ├── DescriptorHeapManager.cpp │ │ │ ├── DescriptorHeapManager.h │ │ │ ├── PerfQuery.cpp │ │ │ ├── PerfQuery.h │ │ │ ├── Renderer.cpp │ │ │ ├── Renderer.h │ │ │ ├── StreamBuffer.cpp │ │ │ ├── StreamBuffer.h │ │ │ ├── SwapChain.cpp │ │ │ ├── SwapChain.h │ │ │ ├── VertexManager.cpp │ │ │ ├── VertexManager.h │ │ │ ├── VideoBackend.cpp │ │ │ └── VideoBackend.h │ │ ├── D3DCommon │ │ │ ├── CMakeLists.txt │ │ │ ├── Common.cpp │ │ │ ├── Common.h │ │ │ ├── D3DCommon.vcxproj │ │ │ ├── D3DCommon.vcxproj.filters │ │ │ ├── Shader.cpp │ │ │ ├── Shader.h │ │ │ ├── SwapChain.cpp │ │ │ └── SwapChain.h │ │ ├── Null │ │ │ ├── CMakeLists.txt │ │ │ ├── Null.vcxproj │ │ │ ├── NullBackend.cpp │ │ │ ├── NullTexture.cpp │ │ │ ├── NullTexture.h │ │ │ ├── PerfQuery.h │ │ │ ├── Render.cpp │ │ │ ├── Render.h │ │ │ ├── TextureCache.h │ │ │ ├── VertexManager.cpp │ │ │ ├── VertexManager.h │ │ │ └── VideoBackend.h │ │ ├── OGL │ │ │ ├── BoundingBox.cpp │ │ │ ├── BoundingBox.h │ │ │ ├── CMakeLists.txt │ │ │ ├── GPUTimer.h │ │ │ ├── NativeVertexFormat.cpp │ │ │ ├── OGL.vcxproj │ │ │ ├── OGL.vcxproj.filters │ │ │ ├── OGLPipeline.cpp │ │ │ ├── OGLPipeline.h │ │ │ ├── OGLShader.cpp │ │ │ ├── OGLShader.h │ │ │ ├── OGLTexture.cpp │ │ │ ├── OGLTexture.h │ │ │ ├── PerfQuery.cpp │ │ │ ├── PerfQuery.h │ │ │ ├── ProgramShaderCache.cpp │ │ │ ├── ProgramShaderCache.h │ │ │ ├── Render.cpp │ │ │ ├── Render.h │ │ │ ├── SamplerCache.cpp │ │ │ ├── SamplerCache.h │ │ │ ├── StreamBuffer.cpp │ │ │ ├── StreamBuffer.h │ │ │ ├── VertexManager.cpp │ │ │ ├── VertexManager.h │ │ │ ├── VideoBackend.h │ │ │ └── main.cpp │ │ ├── Software │ │ │ ├── CMakeLists.txt │ │ │ ├── Clipper.cpp │ │ │ ├── Clipper.h │ │ │ ├── CopyRegion.h │ │ │ ├── DebugUtil.cpp │ │ │ ├── DebugUtil.h │ │ │ ├── EfbCopy.cpp │ │ │ ├── EfbCopy.h │ │ │ ├── EfbInterface.cpp │ │ │ ├── EfbInterface.h │ │ │ ├── NativeVertexFormat.h │ │ │ ├── Rasterizer.cpp │ │ │ ├── Rasterizer.h │ │ │ ├── SWOGLWindow.cpp │ │ │ ├── SWOGLWindow.h │ │ │ ├── SWRenderer.cpp │ │ │ ├── SWRenderer.h │ │ │ ├── SWTexture.cpp │ │ │ ├── SWTexture.h │ │ │ ├── SWVertexLoader.cpp │ │ │ ├── SWVertexLoader.h │ │ │ ├── SWmain.cpp │ │ │ ├── SetupUnit.cpp │ │ │ ├── SetupUnit.h │ │ │ ├── Software.vcxproj │ │ │ ├── Tev.cpp │ │ │ ├── Tev.h │ │ │ ├── TextureCache.h │ │ │ ├── TextureEncoder.cpp │ │ │ ├── TextureEncoder.h │ │ │ ├── TextureSampler.cpp │ │ │ ├── TextureSampler.h │ │ │ ├── TransformUnit.cpp │ │ │ ├── TransformUnit.h │ │ │ ├── Vec3.h │ │ │ └── VideoBackend.h │ │ └── Vulkan │ │ │ ├── BoundingBox.cpp │ │ │ ├── BoundingBox.h │ │ │ ├── CMakeLists.txt │ │ │ ├── CommandBufferManager.cpp │ │ │ ├── CommandBufferManager.h │ │ │ ├── Constants.h │ │ │ ├── ObjectCache.cpp │ │ │ ├── ObjectCache.h │ │ │ ├── PerfQuery.cpp │ │ │ ├── PerfQuery.h │ │ │ ├── Renderer.cpp │ │ │ ├── Renderer.h │ │ │ ├── ShaderCompiler.cpp │ │ │ ├── ShaderCompiler.h │ │ │ ├── StagingBuffer.cpp │ │ │ ├── StagingBuffer.h │ │ │ ├── StateTracker.cpp │ │ │ ├── StateTracker.h │ │ │ ├── StreamBuffer.cpp │ │ │ ├── StreamBuffer.h │ │ │ ├── SwapChain.cpp │ │ │ ├── SwapChain.h │ │ │ ├── VKPipeline.cpp │ │ │ ├── VKPipeline.h │ │ │ ├── VKShader.cpp │ │ │ ├── VKShader.h │ │ │ ├── VKTexture.cpp │ │ │ ├── VKTexture.h │ │ │ ├── VertexFormat.cpp │ │ │ ├── VertexFormat.h │ │ │ ├── VertexManager.cpp │ │ │ ├── VertexManager.h │ │ │ ├── VideoBackend.h │ │ │ ├── Vulkan.vcxproj │ │ │ ├── VulkanContext.cpp │ │ │ ├── VulkanContext.h │ │ │ ├── VulkanEntryPoints.inl │ │ │ ├── VulkanLoader.cpp │ │ │ ├── VulkanLoader.h │ │ │ └── main.cpp │ ├── VideoCommon │ │ ├── AbstractFramebuffer.cpp │ │ ├── AbstractFramebuffer.h │ │ ├── AbstractPipeline.h │ │ ├── AbstractShader.h │ │ ├── AbstractStagingTexture.cpp │ │ ├── AbstractStagingTexture.h │ │ ├── AbstractTexture.cpp │ │ ├── AbstractTexture.h │ │ ├── AsyncRequests.cpp │ │ ├── AsyncRequests.h │ │ ├── AsyncShaderCompiler.cpp │ │ ├── AsyncShaderCompiler.h │ │ ├── BPFunctions.cpp │ │ ├── BPFunctions.h │ │ ├── BPMemory.cpp │ │ ├── BPMemory.h │ │ ├── BPStructs.cpp │ │ ├── BPStructs.h │ │ ├── BoundingBox.cpp │ │ ├── BoundingBox.h │ │ ├── CMakeLists.txt │ │ ├── CPMemory.cpp │ │ ├── CPMemory.h │ │ ├── CommandProcessor.cpp │ │ ├── CommandProcessor.h │ │ ├── ConstantManager.h │ │ ├── DataReader.h │ │ ├── DriverDetails.cpp │ │ ├── DriverDetails.h │ │ ├── FPSCounter.cpp │ │ ├── FPSCounter.h │ │ ├── Fifo.cpp │ │ ├── Fifo.h │ │ ├── FrameDump.cpp │ │ ├── FrameDump.h │ │ ├── FramebufferManager.cpp │ │ ├── FramebufferManager.h │ │ ├── FramebufferShaderGen.cpp │ │ ├── FramebufferShaderGen.h │ │ ├── GXPipelineTypes.h │ │ ├── GeometryShaderGen.cpp │ │ ├── GeometryShaderGen.h │ │ ├── GeometryShaderManager.cpp │ │ ├── GeometryShaderManager.h │ │ ├── HiresTextures.cpp │ │ ├── HiresTextures.h │ │ ├── HiresTextures_DDSLoader.cpp │ │ ├── ImageWrite.cpp │ │ ├── ImageWrite.h │ │ ├── IndexGenerator.cpp │ │ ├── IndexGenerator.h │ │ ├── LightingShaderGen.cpp │ │ ├── LightingShaderGen.h │ │ ├── LookUpTables.h │ │ ├── NativeVertexFormat.h │ │ ├── NetPlayChatUI.cpp │ │ ├── NetPlayChatUI.h │ │ ├── NetPlayGolfUI.cpp │ │ ├── NetPlayGolfUI.h │ │ ├── OnScreenDisplay.cpp │ │ ├── OnScreenDisplay.h │ │ ├── OpcodeDecoding.cpp │ │ ├── OpcodeDecoding.h │ │ ├── PerfQueryBase.cpp │ │ ├── PerfQueryBase.h │ │ ├── PixelEngine.cpp │ │ ├── PixelEngine.h │ │ ├── PixelShaderGen.cpp │ │ ├── PixelShaderGen.h │ │ ├── PixelShaderManager.cpp │ │ ├── PixelShaderManager.h │ │ ├── PostProcessing.cpp │ │ ├── PostProcessing.h │ │ ├── RenderBase.cpp │ │ ├── RenderBase.h │ │ ├── RenderState.cpp │ │ ├── RenderState.h │ │ ├── SamplerCommon.h │ │ ├── ShaderCache.cpp │ │ ├── ShaderCache.h │ │ ├── ShaderGenCommon.cpp │ │ ├── ShaderGenCommon.h │ │ ├── Statistics.cpp │ │ ├── Statistics.h │ │ ├── TextureCacheBase.cpp │ │ ├── TextureCacheBase.h │ │ ├── TextureConfig.cpp │ │ ├── TextureConfig.h │ │ ├── TextureConversionShader.cpp │ │ ├── TextureConversionShader.h │ │ ├── TextureConverterShaderGen.cpp │ │ ├── TextureConverterShaderGen.h │ │ ├── TextureDecoder.h │ │ ├── TextureDecoder_Common.cpp │ │ ├── TextureDecoder_Generic.cpp │ │ ├── TextureDecoder_Util.h │ │ ├── TextureDecoder_x64.cpp │ │ ├── UberShaderCommon.cpp │ │ ├── UberShaderCommon.h │ │ ├── UberShaderPixel.cpp │ │ ├── UberShaderPixel.h │ │ ├── UberShaderVertex.cpp │ │ ├── UberShaderVertex.h │ │ ├── VertexLoader.cpp │ │ ├── VertexLoader.h │ │ ├── VertexLoaderARM64.cpp │ │ ├── VertexLoaderARM64.h │ │ ├── VertexLoaderBase.cpp │ │ ├── VertexLoaderBase.h │ │ ├── VertexLoaderManager.cpp │ │ ├── VertexLoaderManager.h │ │ ├── VertexLoaderUtils.h │ │ ├── VertexLoaderX64.cpp │ │ ├── VertexLoaderX64.h │ │ ├── VertexLoader_Color.cpp │ │ ├── VertexLoader_Color.h │ │ ├── VertexLoader_Normal.cpp │ │ ├── VertexLoader_Normal.h │ │ ├── VertexLoader_Position.cpp │ │ ├── VertexLoader_Position.h │ │ ├── VertexLoader_TextCoord.cpp │ │ ├── VertexLoader_TextCoord.h │ │ ├── VertexManagerBase.cpp │ │ ├── VertexManagerBase.h │ │ ├── VertexShaderGen.cpp │ │ ├── VertexShaderGen.h │ │ ├── VertexShaderManager.cpp │ │ ├── VertexShaderManager.h │ │ ├── VideoBackendBase.cpp │ │ ├── VideoBackendBase.h │ │ ├── VideoCommon.h │ │ ├── VideoCommon.vcxproj │ │ ├── VideoCommon.vcxproj.filters │ │ ├── VideoConfig.cpp │ │ ├── VideoConfig.h │ │ ├── VideoState.cpp │ │ ├── VideoState.h │ │ ├── XFMemory.cpp │ │ ├── XFMemory.h │ │ ├── XFStructs.cpp │ │ ├── XFStructs.h │ │ └── sfont.inc │ └── WinUpdater │ │ ├── CMakeLists.txt │ │ ├── Main.cpp │ │ ├── Updater.exe.manifest │ │ ├── WinUI.cpp │ │ ├── WinUpdater.vcxproj │ │ └── WinUpdater.vcxproj.filters ├── DSPSpy │ ├── Config.h │ ├── ConsoleHelper.h │ ├── DSPSpy.vcproj │ ├── DSPSpy.vcxproj │ ├── DSPSpy.vcxproj.filters │ ├── Makefile │ ├── Stubs.cpp │ ├── build.sh │ ├── dsp_interface.cpp │ ├── dsp_interface.h │ ├── dspregs.h │ ├── gba.txt │ ├── main_spy.cpp │ ├── mem_dump.h │ ├── real_dsp.cpp │ ├── real_dsp.h │ ├── sbuild.sh │ ├── templates │ │ ├── if_test.tpl │ │ ├── tst_test.tpl │ │ └── tstaxh_test.tpl │ ├── tests │ │ ├── accelerator_loop_test.ds │ │ ├── accelerator_test.ds │ │ ├── andc_ls_test.ds │ │ ├── arith_test.ds │ │ ├── dr_test.ds │ │ ├── dsp_base.inc │ │ ├── dsp_test.ds │ │ ├── ir_test.ds │ │ ├── ld_test.ds │ │ ├── mul_test.ds │ │ ├── neg_test.ds │ │ ├── op_test.ds │ │ └── unk_regs_test.ds │ └── util │ │ ├── createtest.pl │ │ └── dump_roms.ds ├── DSPTool │ ├── CMakeLists.txt │ ├── DSPTool.cpp │ ├── DSPTool.vcxproj │ ├── DSPTool.vcxproj.filters │ └── StubHost.cpp ├── PCH │ ├── CMakeLists.txt │ ├── pch.cpp │ ├── pch.h │ └── pch.vcxproj ├── UnitTests │ ├── CMakeLists.txt │ ├── Common │ │ ├── BitFieldTest.cpp │ │ ├── BitSetTest.cpp │ │ ├── BitUtilsTest.cpp │ │ ├── BlockingLoopTest.cpp │ │ ├── BusyLoopTest.cpp │ │ ├── CMakeLists.txt │ │ ├── CommonFuncsTest.cpp │ │ ├── Crypto │ │ │ └── EcTest.cpp │ │ ├── EventTest.cpp │ │ ├── FixedSizeQueueTest.cpp │ │ ├── FlagTest.cpp │ │ ├── FloatUtilsTest.cpp │ │ ├── MathUtilTest.cpp │ │ ├── NandPathsTest.cpp │ │ ├── SPSCQueueTest.cpp │ │ ├── StringUtilTest.cpp │ │ ├── SwapTest.cpp │ │ └── x64EmitterTest.cpp │ ├── Core │ │ ├── CMakeLists.txt │ │ ├── CoreTimingTest.cpp │ │ ├── DSP │ │ │ ├── DSPAcceleratorTest.cpp │ │ │ ├── DSPAssemblyTest.cpp │ │ │ ├── DSPTestBinary.cpp │ │ │ ├── DSPTestBinary.h │ │ │ ├── DSPTestText.cpp │ │ │ ├── DSPTestText.h │ │ │ ├── HermesBinary.cpp │ │ │ ├── HermesBinary.h │ │ │ └── hermes.s │ │ ├── IOS │ │ │ ├── ES │ │ │ │ ├── FormatsTest.cpp │ │ │ │ ├── TestBinaryData.cpp │ │ │ │ └── TestBinaryData.h │ │ │ └── FS │ │ │ │ └── FileSystemTest.cpp │ │ ├── MMIOTest.cpp │ │ ├── PageFaultTest.cpp │ │ └── PowerPC │ │ │ └── Jit64Common │ │ │ └── Frsqrte.cpp │ ├── StubHost.cpp │ ├── UnitTests.vcxproj │ ├── UnitTests.vcxproj.user │ └── VideoCommon │ │ ├── CMakeLists.txt │ │ └── VertexLoaderTest.cpp ├── VSProps │ ├── Base.props │ ├── ClDisableAllWarnings.props │ ├── PCHCommon.props │ ├── PCHCreate.props │ ├── PCHUse.props │ ├── QtCompile.props │ ├── QtCompile.targets │ └── QtCompile.xml └── dolphin-emu.sln ├── Tools ├── CleanFiles.py ├── IDA │ ├── LoadDolphinMap.py │ └── SaveDolphinMap.py ├── buildbot-try.sh ├── check-includes.py ├── find-includes-cycles.py ├── gameini-ratings-from-wiki.sh ├── lint.sh ├── perf-disassemble.sh ├── symbolicate-ppc.py ├── update-license-headers.sh └── update-wiitdb.sh ├── docs ├── ActionReplay │ ├── CodeTypesGuide.txt │ └── GCNCodeTypes.txt ├── DSP │ ├── DSP_InterC │ │ ├── DSP_InterC.sln │ │ └── DSP_InterC │ │ │ ├── DSPExt.cpp │ │ │ ├── DSPExt.h │ │ │ ├── DSPOpcodes.cpp │ │ │ ├── DSPOpcodes.h │ │ │ ├── DSP_InterC.cpp │ │ │ ├── DSP_InterC.vcxproj │ │ │ ├── DSP_InterC.vcxproj.filters │ │ │ ├── OutBuffer.cpp │ │ │ ├── OutBuffer.h │ │ │ ├── gdsp_opcodes_helper.h │ │ │ ├── stdafx.cpp │ │ │ ├── stdafx.h │ │ │ └── targetver.h │ ├── GameCube_DSP_Users_Manual │ │ ├── GameCube_DSP_Users_Manual.tex │ │ └── README.md │ ├── Zelda.txt │ ├── free_dsp_rom │ │ ├── GBA-BillyHatcher-log.txt │ │ ├── GBA-CrystalChronicles-log.txt │ │ ├── GBA-FourSwordsAdventures-log.txt │ │ ├── GBA-MetroidPrime-log.txt │ │ ├── dsp_rom.ds │ │ ├── dsp_rom_readme.txt │ │ └── generate_coefs.py │ ├── prefix_replace.py │ ├── unlockmemcard.ds │ ├── wwdsp.c │ └── zeldaNotes.txt ├── ResourcePacks.md ├── WiiMote │ ├── Dumps │ │ ├── WiiMote_AttribTree_0x10000.bin │ │ ├── WiiMote_AttribTree_0x10000.txt │ │ ├── WiiMote_AttribTree_0x10000_strip.bin │ │ ├── WiiMote_AttribTree_0x10001.bin │ │ ├── WiiMote_AttribTree_0x10001.txt │ │ ├── WiiMote_AttribTree_0x10001_strip.bin │ │ ├── WiiMote_ServiceScan.bin │ │ └── WiiMote_ServiceScan.txt │ └── HID_SPEC_V10.rar ├── codehandler.ld ├── codehandler.s └── gc-font-tool.cpp └── license.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/.mailmap -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/.tx/config -------------------------------------------------------------------------------- /AndroidSetup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/AndroidSetup.md -------------------------------------------------------------------------------- /CMake/CCache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/CCache.cmake -------------------------------------------------------------------------------- /CMake/CheckAndAddFlag.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/CheckAndAddFlag.cmake -------------------------------------------------------------------------------- /CMake/CheckLib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/CheckLib.cmake -------------------------------------------------------------------------------- /CMake/FindALSA.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindALSA.cmake -------------------------------------------------------------------------------- /CMake/FindBacktrace.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindBacktrace.cmake -------------------------------------------------------------------------------- /CMake/FindBlueZ.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindBlueZ.cmake -------------------------------------------------------------------------------- /CMake/FindCubeb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindCubeb.cmake -------------------------------------------------------------------------------- /CMake/FindEGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindEGL.cmake -------------------------------------------------------------------------------- /CMake/FindFFmpeg.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindFFmpeg.cmake -------------------------------------------------------------------------------- /CMake/FindHIDAPI.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindHIDAPI.cmake -------------------------------------------------------------------------------- /CMake/FindLibUSB.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindLibUSB.cmake -------------------------------------------------------------------------------- /CMake/FindLibevdev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindLibevdev.cmake -------------------------------------------------------------------------------- /CMake/FindLibsystemd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindLibsystemd.cmake -------------------------------------------------------------------------------- /CMake/FindLibudev.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindLibudev.cmake -------------------------------------------------------------------------------- /CMake/FindMbedTLS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindMbedTLS.cmake -------------------------------------------------------------------------------- /CMake/FindMiniupnpc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindMiniupnpc.cmake -------------------------------------------------------------------------------- /CMake/FindOProfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindOProfile.cmake -------------------------------------------------------------------------------- /CMake/FindOpenAL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindOpenAL.cmake -------------------------------------------------------------------------------- /CMake/FindOpenSLES.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindOpenSLES.cmake -------------------------------------------------------------------------------- /CMake/FindPulseAudio.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindPulseAudio.cmake -------------------------------------------------------------------------------- /CMake/FindSDL2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindSDL2.cmake -------------------------------------------------------------------------------- /CMake/FindSFML.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/FindSFML.cmake -------------------------------------------------------------------------------- /CMake/Findpugixml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMake/Findpugixml.cmake -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Contributing.md -------------------------------------------------------------------------------- /Data/51-usb-device.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/51-usb-device.rules -------------------------------------------------------------------------------- /Data/Dolphin.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Dolphin.icns -------------------------------------------------------------------------------- /Data/Sys/GC/dsp_coef.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GC/dsp_coef.bin -------------------------------------------------------------------------------- /Data/Sys/GC/dsp_rom.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GC/dsp_rom.bin -------------------------------------------------------------------------------- /Data/Sys/GC/font-licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GC/font-licenses.txt -------------------------------------------------------------------------------- /Data/Sys/GC/font_japanese.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GC/font_japanese.bin -------------------------------------------------------------------------------- /Data/Sys/GC/font_western.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GC/font_western.bin -------------------------------------------------------------------------------- /Data/Sys/GameSettings/C.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/C.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/D43.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/D43.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/DD2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/DD2.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/DJU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/DJU.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/DLS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/DLS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E52.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E52.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E53.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E53.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E54.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E54.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E55.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E55.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E56.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E56.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E57.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E57.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E5W.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E5W.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E5Z.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E5Z.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E62.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E62.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E63.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E63.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E6M.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E6M.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E6N.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E6N.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E6Q.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E6Q.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E6V.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E6V.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E6W.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E6W.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E6X.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E6X.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E73.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E73.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E79.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E79.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E7J.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E7J.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E7V.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E7V.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/E7Z.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/E7Z.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EA2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EA2.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EA3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EA3.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EA4.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EA4.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EA5.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EA5.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EA6.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EA6.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EA7.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EA7.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EA8.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EA8.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EA9.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EA9.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAA.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAB.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAC.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAD.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAD.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAE.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAF.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAF.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAG.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAG.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAH.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAI.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAJ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAJ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAK.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAL.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAM.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAN.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAO.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAP.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAP.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAQ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAQ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAR.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAT.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAU.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAV.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAV.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAW.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAY.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EAZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EAZ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EB2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EB2.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EB3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EB3.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EB4.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EB4.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EB5.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EB5.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EB6.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EB6.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EB7.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EB7.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EB8.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EB8.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EB9.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EB9.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBA.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBB.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBC.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBD.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBD.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBE.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBF.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBF.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBG.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBG.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBK.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBL.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBM.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBN.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBO.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBP.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBP.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBQ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBQ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBR.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBT.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBU.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBV.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBV.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBW.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBX.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBX.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/EBZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/EBZ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/ECA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/ECA.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/ECC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/ECC.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/ECD.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/ECD.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/ECE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/ECE.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/ECF.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/ECF.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/ECG.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/ECG.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/ECI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/ECI.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/ECJ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/ECJ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/ECK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/ECK.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/ECL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/ECL.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/ECN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/ECN.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/F.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/F.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G2B.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G2B.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G2M.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G2M.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G2O.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G2O.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G2V.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G2V.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G2X.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G2X.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G3A.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G3A.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G3F.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G3F.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G3L.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G3L.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G3Q.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G3Q.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G3R.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G3R.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G3X.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G3X.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G4C.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G4C.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G4M.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G4M.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G4S.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G4S.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G5N.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G5N.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G5T.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G5T.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G6Q.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G6Q.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G6T.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G6T.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G6W.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G6W.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G8M.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G8M.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G8W.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G8W.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G9R.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G9R.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G9S.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G9S.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/G9T.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/G9T.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GAA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GAA.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GAF.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GAF.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GAK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GAK.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GAL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GAL.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GAP.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GAP.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GAU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GAU.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GAV.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GAV.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GAY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GAY.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GB3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GB3.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GBH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GBH.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GBL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GBL.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GBM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GBM.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GBS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GBS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GBV.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GBV.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GBW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GBW.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GC2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GC2.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GC6.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GC6.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GC9.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GC9.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GCC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GCC.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GCD.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GCD.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GCE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GCE.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GCI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GCI.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GCN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GCN.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GCP.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GCP.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GCZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GCZ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GDD.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GDD.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GDE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GDE.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GDG.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GDG.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GDK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GDK.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GDM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GDM.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GDQ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GDQ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GDS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GDS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GDT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GDT.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GDV.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GDV.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GDX.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GDX.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GE3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GE3.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GE4.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GE4.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GE9.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GE9.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GEA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GEA.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GED.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GED.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GEN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GEN.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GEO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GEO.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GEZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GEZ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GF4.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GF4.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GF7.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GF7.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GFB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GFB.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GFD.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GFD.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GFF.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GFF.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GFG.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GFG.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GFH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GFH.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GFY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GFY.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GFZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GFZ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GGE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GGE.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GGN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GGN.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GGR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GGR.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GGS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GGS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GGV.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GGV.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GGY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GGY.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GGZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GGZ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GH2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GH2.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GH7.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GH7.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GH9.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GH9.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GHK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GHK.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GHN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GHN.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GHQ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GHQ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GHR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GHR.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GHS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GHS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GHV.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GHV.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GHY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GHY.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GIA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GIA.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GIC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GIC.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GIL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GIL.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GIQ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GIQ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GIS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GIS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GIZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GIZ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GJB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GJB.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GJK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GJK.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GJN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GJN.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GK2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GK2.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GK4.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GK4.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GK5.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GK5.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GK7.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GK7.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GKB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GKB.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GKH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GKH.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GKL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GKL.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GKM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GKM.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GKO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GKO.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GKS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GKS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GKU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GKU.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GKY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GKY.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GKZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GKZ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GL5.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GL5.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GL7.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GL7.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GLC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GLC.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GLG.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GLG.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GLM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GLM.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GLR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GLR.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GLS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GLS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GM2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GM2.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GM3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GM3.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GM4.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GM4.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GM5.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GM5.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GM6.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GM6.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GM8.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GM8.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GMB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GMB.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GMD.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GMD.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GMH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GMH.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GMI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GMI.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GMN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GMN.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GMS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GMS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GMX.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GMX.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GN4.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GN4.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GN7.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GN7.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GNC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GNC.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GNE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GNE.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GNI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GNI.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GNJ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GNJ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GNM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GNM.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GNN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GNN.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GNO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GNO.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GO2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GO2.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GOM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GOM.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GOQ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GOQ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GOS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GOS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GOW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GOW.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GOY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GOY.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GP2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GP2.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GP5.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GP5.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GP6.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GP6.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GPA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GPA.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GPE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GPE.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GPH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GPH.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GPK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GPK.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GPO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GPO.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GPS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GPS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GPT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GPT.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GQC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GQC.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GQS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GQS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GQX.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GQX.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GRB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GRB.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GRH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GRH.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GRJ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GRJ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GRK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GRK.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GRQ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GRQ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GRS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GRS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GRU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GRU.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GRY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GRY.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GS2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GS2.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GSM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GSM.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GSN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GSN.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GSO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GSO.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GSQ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GSQ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GSR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GSR.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GSS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GSS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GST.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GST.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GSW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GSW.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GSX.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GSX.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GSZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GSZ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GT3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GT3.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GT6.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GT6.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GT7.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GT7.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GTK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GTK.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GTO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GTO.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GTR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GTR.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GTW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GTW.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GTZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GTZ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GUB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GUB.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GUM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GUM.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GUN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GUN.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GUP.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GUP.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GUT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GUT.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GUZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GUZ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GVC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GVC.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GVJ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GVJ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GVL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GVL.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GVO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GVO.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GVS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GVS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GW2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GW2.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GW7.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GW7.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GWJ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GWJ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GWL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GWL.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GWP.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GWP.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GWT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GWT.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GWY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GWY.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GX3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GX3.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GXB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GXB.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GXG.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GXG.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GXM.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GXM.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GXN.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GXN.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GXS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GXS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GXU.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GXU.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GXX.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GXX.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GYQ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GYQ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GYT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GYT.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GZ2.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GZ2.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GZD.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GZD.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GZE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GZE.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GZL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GZL.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GZP.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GZP.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/GZW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/GZW.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/HA8.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/HA8.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/HA9.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/HA9.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/HAB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/HAB.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/HAC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/HAC.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/HAT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/HAT.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/HBA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/HBA.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/HBB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/HBB.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/HBC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/HBC.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/HBD.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/HBD.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/HBF.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/HBF.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/HBG.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/HBG.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/HBI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/HBI.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/HBK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/HBK.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/HCL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/HCL.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/HCS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/HCS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/J.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/J.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/JBC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/JBC.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/JBK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/JBK.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/JCL.ini: -------------------------------------------------------------------------------- 1 | # JCLE01 - SECRET OF MANA 2 | 3 | [Video_Hacks] 4 | EFBToTextureEnable = False 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/JDA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/JDA.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/JDV.ini: -------------------------------------------------------------------------------- 1 | # JDVE01 - Wild Guns 2 | 3 | [Video_Hacks] 4 | EFBToTextureEnable = False 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/JEC.ini: -------------------------------------------------------------------------------- 1 | # JECE01 - CHRONO TRIGGER 2 | 3 | [Video_Hacks] 4 | EFBToTextureEnable = False 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/L.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/L.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/M.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/M.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/MAK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/MAK.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/MB3.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/MB3.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/MBA.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/MBA.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/MCD.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/MCD.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/MCS.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/MCS.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/MCV.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/MCV.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/MCW.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/MCW.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/MCY.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/MCY.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/MCZ.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/MCZ.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/N.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/N.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/NAB.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/NAB.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/NAC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/NAC.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/NAD.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/NAD.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/NAE.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/NAE.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/NAF.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/NAF.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/NAH.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/NAH.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/NAK.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/NAK.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/NAL.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/NAL.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/NAO.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/NAO.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/NAR.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/NAR.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/NAT.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/NAT.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/P.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/P.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/P2M.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/P2M.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/P4B.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/P4B.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/PC6.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/PC6.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/Q.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/GameSettings/Q.ini -------------------------------------------------------------------------------- /Data/Sys/GameSettings/R5Q.ini: -------------------------------------------------------------------------------- 1 | # R5QPGT - Circus 2 | 3 | [Video_Settings] 4 | SuggestedAspectRatio = 2 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/RD9.ini: -------------------------------------------------------------------------------- 1 | # RD9J18 - Sudoku 2 | 3 | [Video_Settings] 4 | SuggestedAspectRatio = 2 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/SSG.ini: -------------------------------------------------------------------------------- 1 | # SSGPNG - We Sing 2 | 3 | [Video_Settings] 4 | SuggestedAspectRatio = 2 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/WBA.ini: -------------------------------------------------------------------------------- 1 | # WBAJ - Bakutan 2 | 3 | [Video_Settings] 4 | SuggestedAspectRatio = 2 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/WBI.ini: -------------------------------------------------------------------------------- 1 | # WBIE - Boingz 2 | 3 | [Video_Settings] 4 | SuggestedAspectRatio = 2 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/WDA.ini: -------------------------------------------------------------------------------- 1 | # WDAJ - Darts Wii 2 | 3 | [Video_Settings] 4 | SuggestedAspectRatio = 2 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/WDX.ini: -------------------------------------------------------------------------------- 1 | # WDXE - Diatomic 2 | 3 | [Video_Settings] 4 | SuggestedAspectRatio = 2 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/WLX.ini: -------------------------------------------------------------------------------- 1 | # WLXJ - Phalanx 2 | 3 | [Video_Settings] 4 | SuggestedAspectRatio = 2 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/WM5.ini: -------------------------------------------------------------------------------- 1 | # WM5E - MDK2 2 | 3 | [Video_Settings] 4 | SuggestedAspectRatio = 2 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/WMD.ini: -------------------------------------------------------------------------------- 1 | # WMDE - Madstone 2 | 3 | [Video_Settings] 4 | SuggestedAspectRatio = 2 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/WOD.ini: -------------------------------------------------------------------------------- 1 | # WODJ - Ouudaa! 2 | 3 | [Video_Settings] 4 | SuggestedAspectRatio = 2 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/WOF.ini: -------------------------------------------------------------------------------- 1 | # WOFE - Overflow 2 | 3 | [Video_Settings] 4 | SuggestedAspectRatio = 2 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/WOL.ini: -------------------------------------------------------------------------------- 1 | # WOLJ - Othello 2 | 3 | [Video_Settings] 4 | SuggestedAspectRatio = 2 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/WPN.ini: -------------------------------------------------------------------------------- 1 | # WPNJ - Ponjan 2 | 3 | [Video_Settings] 4 | SuggestedAspectRatio = 2 5 | -------------------------------------------------------------------------------- /Data/Sys/GameSettings/WRS.ini: -------------------------------------------------------------------------------- 1 | # WRSE - Step Up 2 | 3 | [Video_Settings] 4 | SuggestedAspectRatio = 2 5 | -------------------------------------------------------------------------------- /Data/Sys/Maps/GFZE01.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/Maps/GFZE01.map -------------------------------------------------------------------------------- /Data/Sys/Maps/GMBE8P.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/Maps/GMBE8P.map -------------------------------------------------------------------------------- /Data/Sys/Shaders/16bit.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/Shaders/16bit.glsl -------------------------------------------------------------------------------- /Data/Sys/Shaders/32bit.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/Shaders/32bit.glsl -------------------------------------------------------------------------------- /Data/Sys/Shaders/FXAA.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/Shaders/FXAA.glsl -------------------------------------------------------------------------------- /Data/Sys/Shaders/brighten.glsl: -------------------------------------------------------------------------------- 1 | void main() 2 | { 3 | SetOutput(Sample()* 3.0); 4 | } 5 | -------------------------------------------------------------------------------- /Data/Sys/Shaders/cool1.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/Shaders/cool1.glsl -------------------------------------------------------------------------------- /Data/Sys/Shaders/emboss.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/Shaders/emboss.glsl -------------------------------------------------------------------------------- /Data/Sys/Shaders/fire.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/Shaders/fire.glsl -------------------------------------------------------------------------------- /Data/Sys/Shaders/fire2.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/Shaders/fire2.glsl -------------------------------------------------------------------------------- /Data/Sys/Shaders/invert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/Shaders/invert.glsl -------------------------------------------------------------------------------- /Data/Sys/Shaders/sepia.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/Shaders/sepia.glsl -------------------------------------------------------------------------------- /Data/Sys/Shaders/sunset.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/Shaders/sunset.glsl -------------------------------------------------------------------------------- /Data/Sys/Shaders/swap_RGB_BGR.glsl: -------------------------------------------------------------------------------- 1 | void main() 2 | { 3 | SetOutput(Sample().bgra); 4 | } 5 | -------------------------------------------------------------------------------- /Data/Sys/Shaders/swap_RGB_BRG.glsl: -------------------------------------------------------------------------------- 1 | void main() 2 | { 3 | SetOutput(Sample().brga); 4 | } 5 | -------------------------------------------------------------------------------- /Data/Sys/Shaders/swap_RGB_GBR.glsl: -------------------------------------------------------------------------------- 1 | void main() 2 | { 3 | SetOutput(Sample()); 4 | } 5 | -------------------------------------------------------------------------------- /Data/Sys/Shaders/swap_RGB_GRB.glsl: -------------------------------------------------------------------------------- 1 | void main() 2 | { 3 | SetOutput(Sample()); 4 | } 5 | -------------------------------------------------------------------------------- /Data/Sys/Shaders/swap_RGB_RBG.glsl: -------------------------------------------------------------------------------- 1 | void main() 2 | { 3 | SetOutput(Sample().rbga); 4 | } 5 | -------------------------------------------------------------------------------- /Data/Sys/Shaders/toxic.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/Shaders/toxic.glsl -------------------------------------------------------------------------------- /Data/Sys/codehandler.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/codehandler.bin -------------------------------------------------------------------------------- /Data/Sys/totaldb.dsy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/totaldb.dsy -------------------------------------------------------------------------------- /Data/Sys/wiitdb-de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/wiitdb-de.txt -------------------------------------------------------------------------------- /Data/Sys/wiitdb-en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/wiitdb-en.txt -------------------------------------------------------------------------------- /Data/Sys/wiitdb-es.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/wiitdb-es.txt -------------------------------------------------------------------------------- /Data/Sys/wiitdb-fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/wiitdb-fr.txt -------------------------------------------------------------------------------- /Data/Sys/wiitdb-it.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/wiitdb-it.txt -------------------------------------------------------------------------------- /Data/Sys/wiitdb-ja.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/wiitdb-ja.txt -------------------------------------------------------------------------------- /Data/Sys/wiitdb-ko.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/wiitdb-ko.txt -------------------------------------------------------------------------------- /Data/Sys/wiitdb-nl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/wiitdb-nl.txt -------------------------------------------------------------------------------- /Data/Sys/wiitdb-pt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/wiitdb-pt.txt -------------------------------------------------------------------------------- /Data/Sys/wiitdb-ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/wiitdb-ru.txt -------------------------------------------------------------------------------- /Data/Sys/wiitdb-zh_CN.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/wiitdb-zh_CN.txt -------------------------------------------------------------------------------- /Data/Sys/wiitdb-zh_TW.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/Sys/wiitdb-zh_TW.txt -------------------------------------------------------------------------------- /Data/dolphin-emu-nogui.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/dolphin-emu-nogui.6 -------------------------------------------------------------------------------- /Data/dolphin-emu.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/dolphin-emu.6 -------------------------------------------------------------------------------- /Data/dolphin-emu.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/dolphin-emu.desktop -------------------------------------------------------------------------------- /Data/dolphin-emu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/dolphin-emu.png -------------------------------------------------------------------------------- /Data/dolphin-emu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/dolphin-emu.svg -------------------------------------------------------------------------------- /Data/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Data/license.txt -------------------------------------------------------------------------------- /Externals/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/.gitignore -------------------------------------------------------------------------------- /Externals/LZO/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/LZO/CMakeLists.txt -------------------------------------------------------------------------------- /Externals/LZO/LZO.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/LZO/LZO.vcxproj -------------------------------------------------------------------------------- /Externals/LZO/README.LZO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/LZO/README.LZO -------------------------------------------------------------------------------- /Externals/LZO/lzo/lzo1x.h: -------------------------------------------------------------------------------- 1 | #include "minilzo.h" 2 | -------------------------------------------------------------------------------- /Externals/LZO/lzoconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/LZO/lzoconf.h -------------------------------------------------------------------------------- /Externals/LZO/lzodefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/LZO/lzodefs.h -------------------------------------------------------------------------------- /Externals/LZO/minilzo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/LZO/minilzo.c -------------------------------------------------------------------------------- /Externals/LZO/minilzo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/LZO/minilzo.h -------------------------------------------------------------------------------- /Externals/MoltenVK/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/MoltenVK/LICENSE -------------------------------------------------------------------------------- /Externals/SFML/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/SFML/license.txt -------------------------------------------------------------------------------- /Externals/cubeb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/cubeb/AUTHORS -------------------------------------------------------------------------------- /Externals/cubeb/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/cubeb/INSTALL.md -------------------------------------------------------------------------------- /Externals/cubeb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/cubeb/LICENSE -------------------------------------------------------------------------------- /Externals/cubeb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/cubeb/README.md -------------------------------------------------------------------------------- /Externals/cubeb/cubeb.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/cubeb/cubeb.supp -------------------------------------------------------------------------------- /Externals/cubeb/src/cubeb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/cubeb/src/cubeb.c -------------------------------------------------------------------------------- /Externals/curl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/COPYING -------------------------------------------------------------------------------- /Externals/curl/curl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/curl.vcxproj -------------------------------------------------------------------------------- /Externals/curl/lib/amigaos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/amigaos.c -------------------------------------------------------------------------------- /Externals/curl/lib/amigaos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/amigaos.h -------------------------------------------------------------------------------- /Externals/curl/lib/asyn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/asyn.h -------------------------------------------------------------------------------- /Externals/curl/lib/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/base64.c -------------------------------------------------------------------------------- /Externals/curl/lib/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/connect.c -------------------------------------------------------------------------------- /Externals/curl/lib/connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/connect.h -------------------------------------------------------------------------------- /Externals/curl/lib/cookie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/cookie.c -------------------------------------------------------------------------------- /Externals/curl/lib/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/cookie.h -------------------------------------------------------------------------------- /Externals/curl/lib/curlx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/curlx.h -------------------------------------------------------------------------------- /Externals/curl/lib/dict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/dict.c -------------------------------------------------------------------------------- /Externals/curl/lib/dict.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/dict.h -------------------------------------------------------------------------------- /Externals/curl/lib/dotdot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/dotdot.c -------------------------------------------------------------------------------- /Externals/curl/lib/dotdot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/dotdot.h -------------------------------------------------------------------------------- /Externals/curl/lib/easy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/easy.c -------------------------------------------------------------------------------- /Externals/curl/lib/easyif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/easyif.h -------------------------------------------------------------------------------- /Externals/curl/lib/escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/escape.c -------------------------------------------------------------------------------- /Externals/curl/lib/escape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/escape.h -------------------------------------------------------------------------------- /Externals/curl/lib/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/file.c -------------------------------------------------------------------------------- /Externals/curl/lib/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/file.h -------------------------------------------------------------------------------- /Externals/curl/lib/ftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/ftp.c -------------------------------------------------------------------------------- /Externals/curl/lib/ftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/ftp.h -------------------------------------------------------------------------------- /Externals/curl/lib/getenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/getenv.c -------------------------------------------------------------------------------- /Externals/curl/lib/getinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/getinfo.c -------------------------------------------------------------------------------- /Externals/curl/lib/getinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/getinfo.h -------------------------------------------------------------------------------- /Externals/curl/lib/gopher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/gopher.c -------------------------------------------------------------------------------- /Externals/curl/lib/gopher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/gopher.h -------------------------------------------------------------------------------- /Externals/curl/lib/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/hash.c -------------------------------------------------------------------------------- /Externals/curl/lib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/hash.h -------------------------------------------------------------------------------- /Externals/curl/lib/hmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/hmac.c -------------------------------------------------------------------------------- /Externals/curl/lib/hostip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/hostip.c -------------------------------------------------------------------------------- /Externals/curl/lib/hostip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/hostip.h -------------------------------------------------------------------------------- /Externals/curl/lib/hostip4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/hostip4.c -------------------------------------------------------------------------------- /Externals/curl/lib/hostip6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/hostip6.c -------------------------------------------------------------------------------- /Externals/curl/lib/hostsyn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/hostsyn.c -------------------------------------------------------------------------------- /Externals/curl/lib/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/http.c -------------------------------------------------------------------------------- /Externals/curl/lib/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/http.h -------------------------------------------------------------------------------- /Externals/curl/lib/http2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/http2.c -------------------------------------------------------------------------------- /Externals/curl/lib/http2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/http2.h -------------------------------------------------------------------------------- /Externals/curl/lib/if2ip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/if2ip.c -------------------------------------------------------------------------------- /Externals/curl/lib/if2ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/if2ip.h -------------------------------------------------------------------------------- /Externals/curl/lib/imap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/imap.c -------------------------------------------------------------------------------- /Externals/curl/lib/imap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/imap.h -------------------------------------------------------------------------------- /Externals/curl/lib/krb5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/krb5.c -------------------------------------------------------------------------------- /Externals/curl/lib/ldap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/ldap.c -------------------------------------------------------------------------------- /Externals/curl/lib/llist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/llist.c -------------------------------------------------------------------------------- /Externals/curl/lib/llist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/llist.h -------------------------------------------------------------------------------- /Externals/curl/lib/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/md4.c -------------------------------------------------------------------------------- /Externals/curl/lib/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/md5.c -------------------------------------------------------------------------------- /Externals/curl/lib/mprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/mprintf.c -------------------------------------------------------------------------------- /Externals/curl/lib/multi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/multi.c -------------------------------------------------------------------------------- /Externals/curl/lib/multiif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/multiif.h -------------------------------------------------------------------------------- /Externals/curl/lib/netrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/netrc.c -------------------------------------------------------------------------------- /Externals/curl/lib/netrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/netrc.h -------------------------------------------------------------------------------- /Externals/curl/lib/nwlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/nwlib.c -------------------------------------------------------------------------------- /Externals/curl/lib/nwos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/nwos.c -------------------------------------------------------------------------------- /Externals/curl/lib/pop3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/pop3.c -------------------------------------------------------------------------------- /Externals/curl/lib/pop3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/pop3.h -------------------------------------------------------------------------------- /Externals/curl/lib/rawstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/rawstr.c -------------------------------------------------------------------------------- /Externals/curl/lib/rawstr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/rawstr.h -------------------------------------------------------------------------------- /Externals/curl/lib/rtsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/rtsp.c -------------------------------------------------------------------------------- /Externals/curl/lib/rtsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/rtsp.h -------------------------------------------------------------------------------- /Externals/curl/lib/select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/select.c -------------------------------------------------------------------------------- /Externals/curl/lib/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/select.h -------------------------------------------------------------------------------- /Externals/curl/lib/sendf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/sendf.c -------------------------------------------------------------------------------- /Externals/curl/lib/sendf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/sendf.h -------------------------------------------------------------------------------- /Externals/curl/lib/share.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/share.c -------------------------------------------------------------------------------- /Externals/curl/lib/share.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/share.h -------------------------------------------------------------------------------- /Externals/curl/lib/sigpipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/sigpipe.h -------------------------------------------------------------------------------- /Externals/curl/lib/slist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/slist.c -------------------------------------------------------------------------------- /Externals/curl/lib/slist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/slist.h -------------------------------------------------------------------------------- /Externals/curl/lib/smb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/smb.c -------------------------------------------------------------------------------- /Externals/curl/lib/smb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/smb.h -------------------------------------------------------------------------------- /Externals/curl/lib/smtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/smtp.c -------------------------------------------------------------------------------- /Externals/curl/lib/smtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/smtp.h -------------------------------------------------------------------------------- /Externals/curl/lib/socks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/socks.c -------------------------------------------------------------------------------- /Externals/curl/lib/socks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/socks.h -------------------------------------------------------------------------------- /Externals/curl/lib/splay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/splay.c -------------------------------------------------------------------------------- /Externals/curl/lib/splay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/splay.h -------------------------------------------------------------------------------- /Externals/curl/lib/ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/ssh.c -------------------------------------------------------------------------------- /Externals/curl/lib/ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/ssh.h -------------------------------------------------------------------------------- /Externals/curl/lib/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/strdup.c -------------------------------------------------------------------------------- /Externals/curl/lib/strdup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/strdup.h -------------------------------------------------------------------------------- /Externals/curl/lib/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/strtok.c -------------------------------------------------------------------------------- /Externals/curl/lib/strtok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/strtok.h -------------------------------------------------------------------------------- /Externals/curl/lib/telnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/telnet.c -------------------------------------------------------------------------------- /Externals/curl/lib/telnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/telnet.h -------------------------------------------------------------------------------- /Externals/curl/lib/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/tftp.c -------------------------------------------------------------------------------- /Externals/curl/lib/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/tftp.h -------------------------------------------------------------------------------- /Externals/curl/lib/timeval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/timeval.c -------------------------------------------------------------------------------- /Externals/curl/lib/timeval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/timeval.h -------------------------------------------------------------------------------- /Externals/curl/lib/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/url.c -------------------------------------------------------------------------------- /Externals/curl/lib/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/url.h -------------------------------------------------------------------------------- /Externals/curl/lib/urldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/urldata.h -------------------------------------------------------------------------------- /Externals/curl/lib/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/curl/lib/version.c -------------------------------------------------------------------------------- /Externals/ed25519/ed25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/ed25519/ed25519.h -------------------------------------------------------------------------------- /Externals/ed25519/fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/ed25519/fe.c -------------------------------------------------------------------------------- /Externals/ed25519/fe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/ed25519/fe.h -------------------------------------------------------------------------------- /Externals/ed25519/fixedint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/ed25519/fixedint.h -------------------------------------------------------------------------------- /Externals/ed25519/ge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/ed25519/ge.c -------------------------------------------------------------------------------- /Externals/ed25519/ge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/ed25519/ge.h -------------------------------------------------------------------------------- /Externals/ed25519/keypair.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/ed25519/keypair.c -------------------------------------------------------------------------------- /Externals/ed25519/sc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/ed25519/sc.c -------------------------------------------------------------------------------- /Externals/ed25519/sc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/ed25519/sc.h -------------------------------------------------------------------------------- /Externals/ed25519/seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/ed25519/seed.c -------------------------------------------------------------------------------- /Externals/ed25519/sha512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/ed25519/sha512.c -------------------------------------------------------------------------------- /Externals/ed25519/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/ed25519/sha512.h -------------------------------------------------------------------------------- /Externals/ed25519/sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/ed25519/sign.c -------------------------------------------------------------------------------- /Externals/ed25519/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/ed25519/verify.c -------------------------------------------------------------------------------- /Externals/enet/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/ChangeLog -------------------------------------------------------------------------------- /Externals/enet/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/Doxyfile -------------------------------------------------------------------------------- /Externals/enet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/LICENSE -------------------------------------------------------------------------------- /Externals/enet/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/Makefile.am -------------------------------------------------------------------------------- /Externals/enet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/README -------------------------------------------------------------------------------- /Externals/enet/callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/callbacks.c -------------------------------------------------------------------------------- /Externals/enet/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/compress.c -------------------------------------------------------------------------------- /Externals/enet/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/configure.ac -------------------------------------------------------------------------------- /Externals/enet/docs/FAQ.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/docs/FAQ.dox -------------------------------------------------------------------------------- /Externals/enet/enet.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/enet.dsp -------------------------------------------------------------------------------- /Externals/enet/enet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/enet.vcxproj -------------------------------------------------------------------------------- /Externals/enet/enet_dll.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/enet_dll.cbp -------------------------------------------------------------------------------- /Externals/enet/host.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/host.c -------------------------------------------------------------------------------- /Externals/enet/libenet.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/libenet.pc.in -------------------------------------------------------------------------------- /Externals/enet/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/list.c -------------------------------------------------------------------------------- /Externals/enet/m4/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Externals/enet/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/packet.c -------------------------------------------------------------------------------- /Externals/enet/peer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/peer.c -------------------------------------------------------------------------------- /Externals/enet/premake4.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/premake4.lua -------------------------------------------------------------------------------- /Externals/enet/protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/protocol.c -------------------------------------------------------------------------------- /Externals/enet/unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/unix.c -------------------------------------------------------------------------------- /Externals/enet/win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/enet/win32.c -------------------------------------------------------------------------------- /Externals/fmt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/fmt/.gitignore -------------------------------------------------------------------------------- /Externals/fmt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/fmt/CMakeLists.txt -------------------------------------------------------------------------------- /Externals/fmt/ChangeLog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/fmt/ChangeLog.rst -------------------------------------------------------------------------------- /Externals/fmt/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/fmt/LICENSE.rst -------------------------------------------------------------------------------- /Externals/fmt/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/fmt/README.rst -------------------------------------------------------------------------------- /Externals/fmt/src/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/fmt/src/format.cc -------------------------------------------------------------------------------- /Externals/fmt/src/posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/fmt/src/posix.cc -------------------------------------------------------------------------------- /Externals/fmt/support/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Externals/fmt/support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/fmt/support/README -------------------------------------------------------------------------------- /Externals/fmt/support/rtd/theme/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | -------------------------------------------------------------------------------- /Externals/gettext/msgfmt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/gettext/msgfmt.exe -------------------------------------------------------------------------------- /Externals/glslang/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/glslang/.gitignore -------------------------------------------------------------------------------- /Externals/glslang/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/glslang/README.md -------------------------------------------------------------------------------- /Externals/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/gtest/LICENSE -------------------------------------------------------------------------------- /Externals/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/gtest/src/gtest.cc -------------------------------------------------------------------------------- /Externals/hidapi/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/hidapi/AUTHORS.txt -------------------------------------------------------------------------------- /Externals/hidapi/HACKING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/hidapi/HACKING.txt -------------------------------------------------------------------------------- /Externals/hidapi/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/hidapi/LICENSE.txt -------------------------------------------------------------------------------- /Externals/hidapi/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/hidapi/README.txt -------------------------------------------------------------------------------- /Externals/hidapi/linux/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/hidapi/linux/hid.c -------------------------------------------------------------------------------- /Externals/hidapi/mac/hid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/hidapi/mac/hid.c -------------------------------------------------------------------------------- /Externals/imgui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/imgui/LICENSE.txt -------------------------------------------------------------------------------- /Externals/imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/imgui/imconfig.h -------------------------------------------------------------------------------- /Externals/imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/imgui/imgui.cpp -------------------------------------------------------------------------------- /Externals/imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/imgui/imgui.h -------------------------------------------------------------------------------- /Externals/libiconv-1.14/src/iconv_no_i18n.c: -------------------------------------------------------------------------------- 1 | #define NO_I18N 2 | #include "iconv.c" 3 | -------------------------------------------------------------------------------- /Externals/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/png.c -------------------------------------------------------------------------------- /Externals/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/png.h -------------------------------------------------------------------------------- /Externals/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngconf.h -------------------------------------------------------------------------------- /Externals/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngdebug.h -------------------------------------------------------------------------------- /Externals/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngerror.c -------------------------------------------------------------------------------- /Externals/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngget.c -------------------------------------------------------------------------------- /Externals/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pnginfo.h -------------------------------------------------------------------------------- /Externals/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngmem.c -------------------------------------------------------------------------------- /Externals/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngpread.c -------------------------------------------------------------------------------- /Externals/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngpriv.h -------------------------------------------------------------------------------- /Externals/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngread.c -------------------------------------------------------------------------------- /Externals/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngrio.c -------------------------------------------------------------------------------- /Externals/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngrtran.c -------------------------------------------------------------------------------- /Externals/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngrutil.c -------------------------------------------------------------------------------- /Externals/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngset.c -------------------------------------------------------------------------------- /Externals/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngstruct.h -------------------------------------------------------------------------------- /Externals/libpng/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngtest.c -------------------------------------------------------------------------------- /Externals/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngtrans.c -------------------------------------------------------------------------------- /Externals/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngwio.c -------------------------------------------------------------------------------- /Externals/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngwrite.c -------------------------------------------------------------------------------- /Externals/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngwtran.c -------------------------------------------------------------------------------- /Externals/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libpng/pngwutil.c -------------------------------------------------------------------------------- /Externals/libusb/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libusb/.travis.yml -------------------------------------------------------------------------------- /Externals/libusb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libusb/AUTHORS -------------------------------------------------------------------------------- /Externals/libusb/Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libusb/Brewfile -------------------------------------------------------------------------------- /Externals/libusb/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libusb/COPYING -------------------------------------------------------------------------------- /Externals/libusb/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libusb/ChangeLog -------------------------------------------------------------------------------- /Externals/libusb/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libusb/INSTALL -------------------------------------------------------------------------------- /Externals/libusb/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libusb/Makefile.am -------------------------------------------------------------------------------- /Externals/libusb/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libusb/NEWS -------------------------------------------------------------------------------- /Externals/libusb/PORTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libusb/PORTING -------------------------------------------------------------------------------- /Externals/libusb/README: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /Externals/libusb/README.git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libusb/README.git -------------------------------------------------------------------------------- /Externals/libusb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libusb/README.md -------------------------------------------------------------------------------- /Externals/libusb/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libusb/TODO -------------------------------------------------------------------------------- /Externals/libusb/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libusb/autogen.sh -------------------------------------------------------------------------------- /Externals/libusb/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libusb/config.h.in -------------------------------------------------------------------------------- /Externals/libusb/libusb/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/libusb/libusb/io.c -------------------------------------------------------------------------------- /Externals/libusb/libusb/version_nano.h: -------------------------------------------------------------------------------- 1 | #define LIBUSB_NANO 11367 2 | -------------------------------------------------------------------------------- /Externals/licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/licenses.md -------------------------------------------------------------------------------- /Externals/mbedtls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/mbedtls/LICENSE -------------------------------------------------------------------------------- /Externals/mbedtls/include/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *.sln 3 | *.vcxproj 4 | mbedtls/check_config 5 | -------------------------------------------------------------------------------- /Externals/mbedtls/library/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | libmbed* 3 | *.sln 4 | *.vcxproj 5 | -------------------------------------------------------------------------------- /Externals/miniupnpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/miniupnpc/LICENSE -------------------------------------------------------------------------------- /Externals/miniupnpc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/miniupnpc/README -------------------------------------------------------------------------------- /Externals/miniupnpc/VERSION: -------------------------------------------------------------------------------- 1 | 1.9 2 | -------------------------------------------------------------------------------- /Externals/minizip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/minizip/LICENSE -------------------------------------------------------------------------------- /Externals/minizip/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/minizip/README -------------------------------------------------------------------------------- /Externals/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/minizip/ioapi.c -------------------------------------------------------------------------------- /Externals/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/minizip/ioapi.h -------------------------------------------------------------------------------- /Externals/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/minizip/unzip.c -------------------------------------------------------------------------------- /Externals/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/minizip/unzip.h -------------------------------------------------------------------------------- /Externals/picojson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/picojson/LICENSE -------------------------------------------------------------------------------- /Externals/xxhash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/xxhash/LICENSE -------------------------------------------------------------------------------- /Externals/xxhash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/xxhash/xxhash.c -------------------------------------------------------------------------------- /Externals/xxhash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/xxhash/xxhash.h -------------------------------------------------------------------------------- /Externals/xxhash/xxhsum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/xxhash/xxhsum.c -------------------------------------------------------------------------------- /Externals/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/ChangeLog -------------------------------------------------------------------------------- /Externals/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/adler32.c -------------------------------------------------------------------------------- /Externals/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/compress.c -------------------------------------------------------------------------------- /Externals/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/crc32.c -------------------------------------------------------------------------------- /Externals/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/crc32.h -------------------------------------------------------------------------------- /Externals/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/deflate.c -------------------------------------------------------------------------------- /Externals/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/deflate.h -------------------------------------------------------------------------------- /Externals/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/gzclose.c -------------------------------------------------------------------------------- /Externals/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/gzguts.h -------------------------------------------------------------------------------- /Externals/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/gzlib.c -------------------------------------------------------------------------------- /Externals/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/gzread.c -------------------------------------------------------------------------------- /Externals/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/gzwrite.c -------------------------------------------------------------------------------- /Externals/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/infback.c -------------------------------------------------------------------------------- /Externals/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/inffast.c -------------------------------------------------------------------------------- /Externals/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/inffast.h -------------------------------------------------------------------------------- /Externals/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/inffixed.h -------------------------------------------------------------------------------- /Externals/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/inflate.c -------------------------------------------------------------------------------- /Externals/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/inflate.h -------------------------------------------------------------------------------- /Externals/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/inftrees.c -------------------------------------------------------------------------------- /Externals/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/inftrees.h -------------------------------------------------------------------------------- /Externals/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/trees.c -------------------------------------------------------------------------------- /Externals/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/trees.h -------------------------------------------------------------------------------- /Externals/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/uncompr.c -------------------------------------------------------------------------------- /Externals/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/zconf.h -------------------------------------------------------------------------------- /Externals/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/zlib.h -------------------------------------------------------------------------------- /Externals/zlib/zlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/zlib.vcxproj -------------------------------------------------------------------------------- /Externals/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/zutil.c -------------------------------------------------------------------------------- /Externals/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Externals/zlib/zutil.h -------------------------------------------------------------------------------- /Installer/Dolphin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Installer/Dolphin.ico -------------------------------------------------------------------------------- /Installer/Installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Installer/Installer.nsi -------------------------------------------------------------------------------- /Installer/dolphin-emu.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Installer/dolphin-emu.spec -------------------------------------------------------------------------------- /Installer/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Installer/license.txt -------------------------------------------------------------------------------- /Languages/Languages.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/Languages.vcxproj -------------------------------------------------------------------------------- /Languages/po.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po.props -------------------------------------------------------------------------------- /Languages/po.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po.rules -------------------------------------------------------------------------------- /Languages/po.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po.targets -------------------------------------------------------------------------------- /Languages/po.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po.xml -------------------------------------------------------------------------------- /Languages/po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/ar.po -------------------------------------------------------------------------------- /Languages/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/ca.po -------------------------------------------------------------------------------- /Languages/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/cs.po -------------------------------------------------------------------------------- /Languages/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/da.po -------------------------------------------------------------------------------- /Languages/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/de.po -------------------------------------------------------------------------------- /Languages/po/dolphin-emu.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/dolphin-emu.pot -------------------------------------------------------------------------------- /Languages/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/el.po -------------------------------------------------------------------------------- /Languages/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/en.po -------------------------------------------------------------------------------- /Languages/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/es.po -------------------------------------------------------------------------------- /Languages/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/fa.po -------------------------------------------------------------------------------- /Languages/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/fr.po -------------------------------------------------------------------------------- /Languages/po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/hr.po -------------------------------------------------------------------------------- /Languages/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/hu.po -------------------------------------------------------------------------------- /Languages/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/it.po -------------------------------------------------------------------------------- /Languages/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/ja.po -------------------------------------------------------------------------------- /Languages/po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/ko.po -------------------------------------------------------------------------------- /Languages/po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/ms.po -------------------------------------------------------------------------------- /Languages/po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/nb.po -------------------------------------------------------------------------------- /Languages/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/nl.po -------------------------------------------------------------------------------- /Languages/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/pl.po -------------------------------------------------------------------------------- /Languages/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/pt.po -------------------------------------------------------------------------------- /Languages/po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/pt_BR.po -------------------------------------------------------------------------------- /Languages/po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/ro.po -------------------------------------------------------------------------------- /Languages/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/ru.po -------------------------------------------------------------------------------- /Languages/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/sr.po -------------------------------------------------------------------------------- /Languages/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/sv.po -------------------------------------------------------------------------------- /Languages/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/tr.po -------------------------------------------------------------------------------- /Languages/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/zh_CN.po -------------------------------------------------------------------------------- /Languages/po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Languages/po/zh_TW.po -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Readme.md -------------------------------------------------------------------------------- /Source/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/.clang-format -------------------------------------------------------------------------------- /Source/Android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Android/.gitignore -------------------------------------------------------------------------------- /Source/Android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Android/build.gradle -------------------------------------------------------------------------------- /Source/Android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Android/gradlew -------------------------------------------------------------------------------- /Source/Android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Android/gradlew.bat -------------------------------------------------------------------------------- /Source/Android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Source/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/CMakeLists.txt -------------------------------------------------------------------------------- /Source/Core/Common/Align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Align.h -------------------------------------------------------------------------------- /Source/Core/Common/Assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Assert.h -------------------------------------------------------------------------------- /Source/Core/Common/Atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Atomic.h -------------------------------------------------------------------------------- /Source/Core/Common/BitSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/BitSet.h -------------------------------------------------------------------------------- /Source/Core/Common/CDUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/CDUtils.h -------------------------------------------------------------------------------- /Source/Core/Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Common.h -------------------------------------------------------------------------------- /Source/Core/Common/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Event.h -------------------------------------------------------------------------------- /Source/Core/Common/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/File.cpp -------------------------------------------------------------------------------- /Source/Core/Common/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/File.h -------------------------------------------------------------------------------- /Source/Core/Common/Flag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Flag.h -------------------------------------------------------------------------------- /Source/Core/Common/Hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Hash.cpp -------------------------------------------------------------------------------- /Source/Core/Common/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Hash.h -------------------------------------------------------------------------------- /Source/Core/Common/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Image.cpp -------------------------------------------------------------------------------- /Source/Core/Common/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Image.h -------------------------------------------------------------------------------- /Source/Core/Common/IniFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/IniFile.h -------------------------------------------------------------------------------- /Source/Core/Common/Lazy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Lazy.h -------------------------------------------------------------------------------- /Source/Core/Common/MD5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/MD5.cpp -------------------------------------------------------------------------------- /Source/Core/Common/MD5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/MD5.h -------------------------------------------------------------------------------- /Source/Core/Common/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Matrix.h -------------------------------------------------------------------------------- /Source/Core/Common/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Network.h -------------------------------------------------------------------------------- /Source/Core/Common/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Random.h -------------------------------------------------------------------------------- /Source/Core/Common/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Result.h -------------------------------------------------------------------------------- /Source/Core/Common/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Swap.h -------------------------------------------------------------------------------- /Source/Core/Common/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Thread.h -------------------------------------------------------------------------------- /Source/Core/Common/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Timer.cpp -------------------------------------------------------------------------------- /Source/Core/Common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Timer.h -------------------------------------------------------------------------------- /Source/Core/Common/UPnP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/UPnP.cpp -------------------------------------------------------------------------------- /Source/Core/Common/UPnP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/UPnP.h -------------------------------------------------------------------------------- /Source/Core/Common/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/Version.h -------------------------------------------------------------------------------- /Source/Core/Common/x64ABI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/x64ABI.h -------------------------------------------------------------------------------- /Source/Core/Common/x64Reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Common/x64Reg.h -------------------------------------------------------------------------------- /Source/Core/Core/ARDecrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/ARDecrypt.h -------------------------------------------------------------------------------- /Source/Core/Core/Analytics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/Analytics.h -------------------------------------------------------------------------------- /Source/Core/Core/Boot/Boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/Boot/Boot.h -------------------------------------------------------------------------------- /Source/Core/Core/Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/Core.cpp -------------------------------------------------------------------------------- /Source/Core/Core/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/Core.h -------------------------------------------------------------------------------- /Source/Core/Core/GeckoCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/GeckoCode.h -------------------------------------------------------------------------------- /Source/Core/Core/HLE/HLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HLE/HLE.cpp -------------------------------------------------------------------------------- /Source/Core/Core/HLE/HLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HLE/HLE.h -------------------------------------------------------------------------------- /Source/Core/Core/HW/CPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HW/CPU.cpp -------------------------------------------------------------------------------- /Source/Core/Core/HW/CPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HW/CPU.h -------------------------------------------------------------------------------- /Source/Core/Core/HW/DSP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HW/DSP.cpp -------------------------------------------------------------------------------- /Source/Core/Core/HW/DSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HW/DSP.h -------------------------------------------------------------------------------- /Source/Core/Core/HW/GCPad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HW/GCPad.h -------------------------------------------------------------------------------- /Source/Core/Core/HW/GPFifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HW/GPFifo.h -------------------------------------------------------------------------------- /Source/Core/Core/HW/HW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HW/HW.cpp -------------------------------------------------------------------------------- /Source/Core/Core/HW/HW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HW/HW.h -------------------------------------------------------------------------------- /Source/Core/Core/HW/MMIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HW/MMIO.cpp -------------------------------------------------------------------------------- /Source/Core/Core/HW/MMIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HW/MMIO.h -------------------------------------------------------------------------------- /Source/Core/Core/HW/Memmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HW/Memmap.h -------------------------------------------------------------------------------- /Source/Core/Core/HW/SI/SI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HW/SI/SI.h -------------------------------------------------------------------------------- /Source/Core/Core/HW/Sram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HW/Sram.cpp -------------------------------------------------------------------------------- /Source/Core/Core/HW/Sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/HW/Sram.h -------------------------------------------------------------------------------- /Source/Core/Core/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/Host.h -------------------------------------------------------------------------------- /Source/Core/Core/IOS/DI/DI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/IOS/DI/DI.h -------------------------------------------------------------------------------- /Source/Core/Core/IOS/ES/ES.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/IOS/ES/ES.h -------------------------------------------------------------------------------- /Source/Core/Core/IOS/IOS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/IOS/IOS.cpp -------------------------------------------------------------------------------- /Source/Core/Core/IOS/IOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/IOS/IOS.h -------------------------------------------------------------------------------- /Source/Core/Core/IOS/IOSC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/IOS/IOSC.h -------------------------------------------------------------------------------- /Source/Core/Core/IOS/MIOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/IOS/MIOS.h -------------------------------------------------------------------------------- /Source/Core/Core/IOS/Uids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/IOS/Uids.h -------------------------------------------------------------------------------- /Source/Core/Core/MemTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/MemTools.h -------------------------------------------------------------------------------- /Source/Core/Core/Movie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/Movie.cpp -------------------------------------------------------------------------------- /Source/Core/Core/Movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/Movie.h -------------------------------------------------------------------------------- /Source/Core/Core/State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/State.cpp -------------------------------------------------------------------------------- /Source/Core/Core/State.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/State.h -------------------------------------------------------------------------------- /Source/Core/Core/SysConf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/SysConf.cpp -------------------------------------------------------------------------------- /Source/Core/Core/SysConf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/SysConf.h -------------------------------------------------------------------------------- /Source/Core/Core/WiiRoot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/WiiRoot.cpp -------------------------------------------------------------------------------- /Source/Core/Core/WiiRoot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/WiiRoot.h -------------------------------------------------------------------------------- /Source/Core/Core/WiiUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/Core/WiiUtils.h -------------------------------------------------------------------------------- /Source/Core/DiscIO/Blob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/DiscIO/Blob.cpp -------------------------------------------------------------------------------- /Source/Core/DiscIO/Blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/DiscIO/Blob.h -------------------------------------------------------------------------------- /Source/Core/DiscIO/Enums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/DiscIO/Enums.cpp -------------------------------------------------------------------------------- /Source/Core/DiscIO/Enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/DiscIO/Enums.h -------------------------------------------------------------------------------- /Source/Core/DiscIO/TGCBlob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/DiscIO/TGCBlob.h -------------------------------------------------------------------------------- /Source/Core/DiscIO/Volume.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/DiscIO/Volume.h -------------------------------------------------------------------------------- /Source/Core/DolphinQt/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/Core/DolphinQt/Host.h -------------------------------------------------------------------------------- /Source/Core/DolphinQt/qt.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/DSPSpy/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/DSPSpy/Config.h -------------------------------------------------------------------------------- /Source/DSPSpy/DSPSpy.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/DSPSpy/DSPSpy.vcproj -------------------------------------------------------------------------------- /Source/DSPSpy/DSPSpy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/DSPSpy/DSPSpy.vcxproj -------------------------------------------------------------------------------- /Source/DSPSpy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/DSPSpy/Makefile -------------------------------------------------------------------------------- /Source/DSPSpy/Stubs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/DSPSpy/Stubs.cpp -------------------------------------------------------------------------------- /Source/DSPSpy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/DSPSpy/build.sh -------------------------------------------------------------------------------- /Source/DSPSpy/dspregs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/DSPSpy/dspregs.h -------------------------------------------------------------------------------- /Source/DSPSpy/gba.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/DSPSpy/gba.txt -------------------------------------------------------------------------------- /Source/DSPSpy/main_spy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/DSPSpy/main_spy.cpp -------------------------------------------------------------------------------- /Source/DSPSpy/mem_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/DSPSpy/mem_dump.h -------------------------------------------------------------------------------- /Source/DSPSpy/real_dsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/DSPSpy/real_dsp.cpp -------------------------------------------------------------------------------- /Source/DSPSpy/real_dsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/DSPSpy/real_dsp.h -------------------------------------------------------------------------------- /Source/DSPSpy/sbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/DSPSpy/sbuild.sh -------------------------------------------------------------------------------- /Source/DSPTool/DSPTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/DSPTool/DSPTool.cpp -------------------------------------------------------------------------------- /Source/DSPTool/StubHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/DSPTool/StubHost.cpp -------------------------------------------------------------------------------- /Source/PCH/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/PCH/CMakeLists.txt -------------------------------------------------------------------------------- /Source/PCH/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/PCH/pch.cpp -------------------------------------------------------------------------------- /Source/PCH/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/PCH/pch.h -------------------------------------------------------------------------------- /Source/PCH/pch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/PCH/pch.vcxproj -------------------------------------------------------------------------------- /Source/VSProps/Base.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/VSProps/Base.props -------------------------------------------------------------------------------- /Source/VSProps/PCHUse.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/VSProps/PCHUse.props -------------------------------------------------------------------------------- /Source/VSProps/QtCompile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/VSProps/QtCompile.xml -------------------------------------------------------------------------------- /Source/dolphin-emu.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Source/dolphin-emu.sln -------------------------------------------------------------------------------- /Tools/CleanFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Tools/CleanFiles.py -------------------------------------------------------------------------------- /Tools/IDA/LoadDolphinMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Tools/IDA/LoadDolphinMap.py -------------------------------------------------------------------------------- /Tools/IDA/SaveDolphinMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Tools/IDA/SaveDolphinMap.py -------------------------------------------------------------------------------- /Tools/buildbot-try.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Tools/buildbot-try.sh -------------------------------------------------------------------------------- /Tools/check-includes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Tools/check-includes.py -------------------------------------------------------------------------------- /Tools/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Tools/lint.sh -------------------------------------------------------------------------------- /Tools/perf-disassemble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Tools/perf-disassemble.sh -------------------------------------------------------------------------------- /Tools/symbolicate-ppc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Tools/symbolicate-ppc.py -------------------------------------------------------------------------------- /Tools/update-wiitdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/Tools/update-wiitdb.sh -------------------------------------------------------------------------------- /docs/DSP/Zelda.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/docs/DSP/Zelda.txt -------------------------------------------------------------------------------- /docs/DSP/prefix_replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/docs/DSP/prefix_replace.py -------------------------------------------------------------------------------- /docs/DSP/unlockmemcard.ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/docs/DSP/unlockmemcard.ds -------------------------------------------------------------------------------- /docs/DSP/wwdsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/docs/DSP/wwdsp.c -------------------------------------------------------------------------------- /docs/DSP/zeldaNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/docs/DSP/zeldaNotes.txt -------------------------------------------------------------------------------- /docs/ResourcePacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/docs/ResourcePacks.md -------------------------------------------------------------------------------- /docs/codehandler.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/docs/codehandler.ld -------------------------------------------------------------------------------- /docs/codehandler.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/docs/codehandler.s -------------------------------------------------------------------------------- /docs/gc-font-tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/docs/gc-font-tool.cpp -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/weihuoya/dolphin/HEAD/license.txt --------------------------------------------------------------------------------