├── .clang-format ├── .codacy.yaml ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── app_bug_report.yaml │ ├── bug_report.md │ ├── config.yml │ ├── emu_bug_report.yaml │ └── feature_request.yaml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── labeler.yml └── workflows │ ├── architecture │ └── README.md │ ├── cron_publish_flatpak.yml │ ├── cron_update_controller_db.yml │ ├── lint_gamedb.yml │ ├── linux_build_flatpak.yml │ ├── linux_build_matrix.yml │ ├── linux_build_qt.yml │ ├── macos_build.yml │ ├── macos_build_matrix.yml │ ├── release_announce.yml │ ├── release_new_tag.yml │ ├── release_pipeline.yml │ ├── scripts │ ├── common │ │ └── name-artifacts.sh │ ├── controller-db │ │ ├── .gitignore │ │ └── update-db.py │ ├── linux │ │ ├── AppRun-qt │ │ ├── appimage-qt.sh │ │ ├── build-dependencies-qt.sh │ │ ├── compile.sh │ │ ├── flatpak │ │ │ ├── modules │ │ │ │ ├── 10-libpcap.json │ │ │ │ ├── 11-libaio.json │ │ │ │ ├── 20-sdl2.json │ │ │ │ └── 21-libbacktrace.json │ │ │ ├── net.pcsx2.PCSX2.json │ │ │ └── screenshots │ │ │ │ ├── screenshot1.png │ │ │ │ └── screenshot2.png │ │ ├── functions.sh │ │ ├── generate-cmake-qt.sh │ │ ├── generate-metainfo.sh │ │ ├── install-packages-flatpak.sh │ │ ├── install-packages-qt.sh │ │ ├── pcsx2-qt.desktop │ │ └── pcsx2-qt.metainfo.xml.in │ ├── macos │ │ └── build-dependencies.sh │ ├── releases │ │ ├── announce-release │ │ │ ├── .gitignore │ │ │ ├── index.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ ├── generate-release-notes │ │ │ ├── .gitignore │ │ │ ├── index.js │ │ │ ├── package-lock.json │ │ │ └── package.json │ │ └── rename-release-assets.py │ └── windows │ │ └── validate-vs-filters.ps1 │ ├── triage_pr.yml │ ├── windows_build_matrix.yml │ └── windows_build_qt.yml ├── .gitignore ├── .gitmodules ├── .prettierrc.yaml ├── 3rdparty ├── 3rdparty.props ├── DefaultProjectRootDir.props ├── GL │ └── khrplatform.h ├── cpuinfo │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── cpuinfo.vcxproj │ ├── cpuinfo.vcxproj.filters │ ├── deps │ │ └── clog │ │ │ ├── .gitignore │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── include │ │ │ └── clog.h │ │ │ └── src │ │ │ └── clog.c │ ├── include │ │ ├── cpuinfo-mock.h │ │ └── cpuinfo.h │ └── src │ │ ├── api.c │ │ ├── arm │ │ ├── android │ │ │ ├── api.h │ │ │ └── properties.c │ │ ├── api.h │ │ ├── cache.c │ │ ├── linux │ │ │ ├── aarch32-isa.c │ │ │ ├── aarch64-isa.c │ │ │ ├── api.h │ │ │ ├── chipset.c │ │ │ ├── clusters.c │ │ │ ├── cp.h │ │ │ ├── cpuinfo.c │ │ │ ├── hwcap.c │ │ │ ├── init.c │ │ │ └── midr.c │ │ ├── mach │ │ │ └── init.c │ │ ├── midr.h │ │ ├── tlb.c │ │ └── uarch.c │ │ ├── cache.c │ │ ├── cpuinfo │ │ ├── common.h │ │ ├── internal-api.h │ │ ├── log.h │ │ └── utils.h │ │ ├── emscripten │ │ └── init.c │ │ ├── init.c │ │ ├── linux │ │ ├── api.h │ │ ├── cpulist.c │ │ ├── mockfile.c │ │ ├── multiline.c │ │ ├── processors.c │ │ └── smallfile.c │ │ ├── mach │ │ ├── api.h │ │ └── topology.c │ │ └── x86 │ │ ├── api.h │ │ ├── cache │ │ ├── descriptor.c │ │ ├── deterministic.c │ │ └── init.c │ │ ├── cpuid.h │ │ ├── info.c │ │ ├── init.c │ │ ├── isa.c │ │ ├── linux │ │ ├── api.h │ │ ├── cpuinfo.c │ │ └── init.c │ │ ├── mach │ │ └── init.c │ │ ├── mockcpuid.c │ │ ├── name.c │ │ ├── topology.c │ │ ├── uarch.c │ │ ├── vendor.c │ │ └── windows │ │ ├── api.h │ │ └── init.c ├── cubeb │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── Config.cmake.in │ ├── INSTALL.md │ ├── LICENSE │ ├── README.md │ ├── cmake │ │ ├── compile_tests │ │ │ └── oss_is_v4.c │ │ └── toolchain-cross-mingw.cmake │ ├── cubeb.supp │ ├── cubeb.vcxproj │ ├── cubeb.vcxproj.filters │ ├── cubeb.vcxproj.user │ ├── include │ │ ├── cubeb │ │ │ └── cubeb.h │ │ └── cubeb_export.h │ ├── src │ │ ├── android │ │ │ ├── audiotrack_definitions.h │ │ │ ├── cubeb-output-latency.h │ │ │ ├── cubeb_media_library.h │ │ │ └── sles_definitions.h │ │ ├── cubeb-internal.h │ │ ├── cubeb-jni-instances.h │ │ ├── cubeb-jni.cpp │ │ ├── cubeb-jni.h │ │ ├── cubeb-sles.h │ │ ├── cubeb-speex-resampler.h │ │ ├── cubeb.c │ │ ├── cubeb_aaudio.cpp │ │ ├── cubeb_alsa.c │ │ ├── cubeb_android.h │ │ ├── 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_oss.c │ │ ├── cubeb_osx_run_loop.cpp │ │ ├── cubeb_osx_run_loop.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_sun.c │ │ ├── cubeb_tracing.h │ │ ├── cubeb_utils.cpp │ │ ├── cubeb_utils.h │ │ ├── cubeb_utils_unix.h │ │ ├── cubeb_utils_win.h │ │ ├── cubeb_wasapi.cpp │ │ └── cubeb_winmm.c │ └── subprojects │ │ └── speex │ │ ├── arch.h │ │ ├── fixed_generic.h │ │ ├── resample.c │ │ ├── resample_neon.h │ │ ├── resample_sse.h │ │ ├── speex_config_types.h │ │ ├── speex_resampler.h │ │ └── stack_alloc.h ├── d3d12memalloc │ ├── CHANGELOG.md │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── NOTICES.txt │ ├── README.md │ ├── d3d12memalloc.vcxproj │ ├── d3d12memalloc.vcxproj.filters │ ├── include │ │ └── D3D12MemAlloc.h │ └── src │ │ ├── D3D12MemAlloc.cpp │ │ └── D3D12MemAlloc.natvis ├── demangler │ ├── CMakeLists.txt │ ├── demangler.vcxproj │ ├── demangler.vcxproj.filters │ ├── include │ │ └── demangler │ │ │ ├── demangler.h │ │ │ ├── demglobal.h │ │ │ ├── demtools.h │ │ │ ├── gparser.h │ │ │ ├── igrams.h │ │ │ └── stgrammars │ │ │ ├── borlandll.h │ │ │ ├── gccll.h │ │ │ └── msll.h │ └── src │ │ ├── CMakeLists.txt │ │ ├── demangler.cpp │ │ ├── demtools.cpp │ │ ├── extgrammars │ │ ├── gramatika-borland │ │ ├── gramatika-gcc │ │ └── gramatika-ms │ │ ├── gparser.cpp │ │ ├── igrams.cpp │ │ └── stgrammars │ │ ├── borlandll.cpp │ │ ├── gccll.cpp │ │ └── msll.cpp ├── discord-rpc │ ├── CMakeLists.txt │ ├── LICENSE │ ├── discord-rpc.vcxproj │ ├── discord-rpc.vcxproj.filters │ ├── include │ │ ├── discord_register.h │ │ └── discord_rpc.h │ └── src │ │ ├── backoff.h │ │ ├── connection.h │ │ ├── connection_unix.cpp │ │ ├── connection_win.cpp │ │ ├── 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 ├── ffmpeg │ ├── COPYING.GPLv2 │ ├── COPYING.GPLv3 │ ├── COPYING.LGPLv2.1 │ ├── COPYING.LGPLv3 │ ├── LICENSE.md │ ├── headers-version.txt │ └── include │ │ ├── libavcodec │ │ ├── ac3_parser.h │ │ ├── adts_parser.h │ │ ├── avcodec.h │ │ ├── avdct.h │ │ ├── avfft.h │ │ ├── bsf.h │ │ ├── codec.h │ │ ├── codec_desc.h │ │ ├── codec_id.h │ │ ├── codec_par.h │ │ ├── d3d11va.h │ │ ├── defs.h │ │ ├── dirac.h │ │ ├── dv_profile.h │ │ ├── dxva2.h │ │ ├── jni.h │ │ ├── mediacodec.h │ │ ├── packet.h │ │ ├── qsv.h │ │ ├── vdpau.h │ │ ├── version.h │ │ ├── version_major.h │ │ ├── videotoolbox.h │ │ ├── vorbis_parser.h │ │ └── xvmc.h │ │ ├── libavformat │ │ ├── avformat.h │ │ ├── avio.h │ │ ├── version.h │ │ └── version_major.h │ │ ├── libavutil │ │ ├── adler32.h │ │ ├── aes.h │ │ ├── aes_ctr.h │ │ ├── ambient_viewing_environment.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 │ │ ├── csp.h │ │ ├── des.h │ │ ├── detection_bbox.h │ │ ├── dict.h │ │ ├── display.h │ │ ├── dovi_meta.h │ │ ├── downmix_info.h │ │ ├── encryption_info.h │ │ ├── error.h │ │ ├── eval.h │ │ ├── ffversion.h │ │ ├── fifo.h │ │ ├── file.h │ │ ├── film_grain_params.h │ │ ├── frame.h │ │ ├── hash.h │ │ ├── hdr_dynamic_metadata.h │ │ ├── hdr_dynamic_vivid_metadata.h │ │ ├── hmac.h │ │ ├── hwcontext.h │ │ ├── hwcontext_cuda.h │ │ ├── hwcontext_d3d11va.h │ │ ├── hwcontext_drm.h │ │ ├── hwcontext_dxva2.h │ │ ├── hwcontext_mediacodec.h │ │ ├── hwcontext_opencl.h │ │ ├── hwcontext_qsv.h │ │ ├── hwcontext_vaapi.h │ │ ├── hwcontext_vdpau.h │ │ ├── hwcontext_videotoolbox.h │ │ ├── hwcontext_vulkan.h │ │ ├── imgutils.h │ │ ├── intfloat.h │ │ ├── intreadwrite.h │ │ ├── lfg.h │ │ ├── log.h │ │ ├── lzo.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 │ │ ├── spherical.h │ │ ├── stereo3d.h │ │ ├── tea.h │ │ ├── threadmessage.h │ │ ├── time.h │ │ ├── timecode.h │ │ ├── timestamp.h │ │ ├── tree.h │ │ ├── twofish.h │ │ ├── tx.h │ │ ├── uuid.h │ │ ├── version.h │ │ ├── video_enc_params.h │ │ └── xtea.h │ │ ├── libswresample │ │ ├── swresample.h │ │ ├── version.h │ │ └── version_major.h │ │ └── libswscale │ │ ├── swscale.h │ │ ├── version.h │ │ └── version_major.h ├── fmt │ └── fmt.vcxproj ├── glad │ ├── CMakeLists.txt │ ├── glad.vcxproj │ ├── glad.vcxproj.filters │ ├── include │ │ ├── glad.h │ │ ├── glad_egl.h │ │ ├── glad_wgl.h │ │ └── khrplatform.h │ └── src │ │ ├── glad.c │ │ ├── glad_egl.c │ │ └── glad_wgl.c ├── glslang │ ├── CMakeLists.txt │ ├── glslang.vcxproj │ ├── glslang.vcxproj.filters │ └── include │ │ └── glslang │ │ └── build_info.h ├── imgui │ ├── CMakeLists.txt │ ├── imgui.vcxproj │ ├── imgui.vcxproj.filters │ ├── include │ │ ├── imconfig.h │ │ ├── imgui.h │ │ ├── imgui_internal.h │ │ ├── imgui_stdlib.h │ │ └── imstb_textedit.h │ └── src │ │ ├── imgui.cpp │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_stdlib.cpp │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ └── imstb_truetype.h ├── include │ ├── IconsFontAwesome5.h │ ├── Packet32.h │ ├── gsl │ │ ├── algorithm │ │ ├── assert │ │ ├── byte │ │ ├── gsl │ │ ├── gsl_algorithm │ │ ├── gsl_assert │ │ ├── gsl_byte │ │ ├── gsl_narrow │ │ ├── gsl_util │ │ ├── narrow │ │ ├── pointers │ │ ├── span │ │ ├── span_ext │ │ ├── string_span │ │ └── util │ ├── pcap-bpf.h │ ├── pcap-namedb.h │ ├── pcap.h │ ├── pcap │ │ ├── bluetooth.h │ │ ├── bpf.h │ │ ├── can_socketcan.h │ │ ├── compiler-tests.h │ │ ├── dlt.h │ │ ├── funcattrs.h │ │ ├── ipnet.h │ │ ├── namedb.h │ │ ├── nflog.h │ │ ├── pcap-inttypes.h │ │ ├── pcap.h │ │ ├── sll.h │ │ ├── socket.h │ │ ├── usb.h │ │ └── vlan.h │ ├── vk_mem_alloc.h │ └── xxhash.h ├── jpgd │ ├── CMakeLists.txt │ ├── jpgd.cpp │ ├── jpgd.h │ ├── jpgd.vcxproj │ ├── jpgd_idct.h │ ├── jpge.cpp │ └── jpge.h ├── libchdr │ ├── CMakeLists.txt │ └── libchdr.vcxproj ├── libjpeg │ ├── CMakeLists.txt │ ├── README │ ├── change.log │ ├── filelist.txt │ ├── jaricom.c │ ├── jcapimin.c │ ├── jcapistd.c │ ├── jcarith.c │ ├── jccoefct.c │ ├── jccolor.c │ ├── jcdctmgr.c │ ├── jchuff.c │ ├── jcinit.c │ ├── jcmainct.c │ ├── jcmarker.c │ ├── jcmaster.c │ ├── jcomapi.c │ ├── jconfig.h │ ├── jcparam.c │ ├── jcprepct.c │ ├── jcsample.c │ ├── jctrans.c │ ├── jdapimin.c │ ├── jdapistd.c │ ├── jdarith.c │ ├── jdatadst.c │ ├── jdatasrc.c │ ├── jdcoefct.c │ ├── jdcolor.c │ ├── jdct.h │ ├── jddctmgr.c │ ├── jdhuff.c │ ├── jdinput.c │ ├── jdmainct.c │ ├── jdmarker.c │ ├── jdmaster.c │ ├── jdmerge.c │ ├── jdpostct.c │ ├── jdsample.c │ ├── jdtrans.c │ ├── jerror.c │ ├── jerror.h │ ├── jfdctflt.c │ ├── jfdctfst.c │ ├── jfdctint.c │ ├── jidctflt.c │ ├── jidctfst.c │ ├── jidctint.c │ ├── jinclude.h │ ├── jmemansi.c │ ├── jmemmac.c │ ├── jmemmgr.c │ ├── jmemname.c │ ├── jmemnobs.c │ ├── jmemsys.h │ ├── jmorecfg.h │ ├── jpegint.h │ ├── jpeglib.h │ ├── jquant1.c │ ├── jquant2.c │ ├── jutils.c │ ├── jversion.h │ ├── libjpeg.vcxproj │ └── libjpeg.vcxproj.filters ├── libpng │ ├── ANNOUNCE │ ├── CHANGES │ ├── CMakeLists.txt │ ├── INSTALL │ ├── LICENSE │ ├── README │ ├── TODO │ ├── configure │ ├── example.c │ ├── libpng-config.in │ ├── libpng-manual.txt │ ├── libpng.3 │ ├── libpng.pc.in │ ├── libpngpf.3 │ ├── png.5 │ ├── png.c │ ├── png.h │ ├── pngbar.jpg │ ├── pngbar.png │ ├── pngconf.h │ ├── pngdebug.h │ ├── pngerror.c │ ├── pngget.c │ ├── pnginfo.h │ ├── pnglibconf.h │ ├── pngmem.c │ ├── pngnow.png │ ├── pngpread.c │ ├── pngpriv.h │ ├── pngread.c │ ├── pngrio.c │ ├── pngrtran.c │ ├── pngrutil.c │ ├── pngset.c │ ├── pngstruct.h │ ├── pngtest.c │ ├── pngtest.png │ ├── pngtrans.c │ ├── pngwio.c │ ├── pngwrite.c │ ├── pngwtran.c │ ├── pngwutil.c │ ├── projects │ │ ├── owatcom │ │ │ ├── libpng.tgt │ │ │ ├── libpng.wpj │ │ │ ├── pngconfig.mak │ │ │ ├── pngstest.tgt │ │ │ ├── pngtest.tgt │ │ │ └── pngvalid.tgt │ │ ├── visualc71 │ │ │ ├── PRJ0041.mak │ │ │ ├── README.txt │ │ │ ├── README_zlib.txt │ │ │ ├── libpng.sln │ │ │ ├── libpng.vcproj │ │ │ ├── pngtest.vcproj │ │ │ └── zlib.vcproj │ │ └── vstudio │ │ │ ├── WARNING │ │ │ ├── libpng │ │ │ └── libpng.vcxproj │ │ │ ├── pnglibconf │ │ │ └── pnglibconf.vcxproj │ │ │ ├── pngstest │ │ │ └── pngstest.vcxproj │ │ │ ├── pngtest │ │ │ └── pngtest.vcxproj │ │ │ ├── pngunknown │ │ │ └── pngunknown.vcxproj │ │ │ ├── pngvalid │ │ │ └── pngvalid.vcxproj │ │ │ ├── readme.txt │ │ │ ├── vstudio.sln │ │ │ ├── zlib.props │ │ │ └── zlib │ │ │ └── zlib.vcxproj │ └── scripts │ │ ├── README.txt │ │ ├── SCOPTIONS.ppc │ │ ├── checksym.awk │ │ ├── def.c │ │ ├── descrip.mms │ │ ├── dfn.awk │ │ ├── intprefix.c │ │ ├── libpng-config-body.in │ │ ├── libpng-config-head.in │ │ ├── libpng.pc.in │ │ ├── macro.lst │ │ ├── makefile.32sunu │ │ ├── makefile.64sunu │ │ ├── makefile.acorn │ │ ├── makefile.aix │ │ ├── makefile.amiga │ │ ├── makefile.atari │ │ ├── makefile.bc32 │ │ ├── makefile.beos │ │ ├── makefile.bor │ │ ├── makefile.cegcc │ │ ├── makefile.darwin │ │ ├── makefile.dec │ │ ├── makefile.dj2 │ │ ├── makefile.freebsd │ │ ├── makefile.gcc │ │ ├── makefile.hp64 │ │ ├── makefile.hpgcc │ │ ├── makefile.hpux │ │ ├── makefile.ibmc │ │ ├── makefile.intel │ │ ├── makefile.knr │ │ ├── makefile.linux │ │ ├── makefile.mips │ │ ├── makefile.msc │ │ ├── makefile.msys │ │ ├── makefile.ne12bsd │ │ ├── makefile.netbsd │ │ ├── makefile.openbsd │ │ ├── makefile.sco │ │ ├── makefile.sggcc │ │ ├── makefile.sgi │ │ ├── makefile.so9 │ │ ├── makefile.solaris │ │ ├── makefile.solaris-x86 │ │ ├── makefile.std │ │ ├── makefile.sunos │ │ ├── makefile.tc3 │ │ ├── makefile.vcwin32 │ │ ├── makevms.com │ │ ├── options.awk │ │ ├── pnglibconf.dfa │ │ ├── pnglibconf.mak │ │ ├── pngwin.rc │ │ ├── prefix.c │ │ ├── smakefile.ppc │ │ ├── sym.c │ │ ├── symbols.c │ │ ├── symbols.def │ │ └── vers.c ├── libzip │ ├── CMakeLists.txt │ ├── libzip.vcxproj │ ├── libzip.vcxproj.filters │ ├── private │ │ ├── config.h │ │ └── zip_err_str.c │ └── zipconf.h ├── lzma │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── include │ │ ├── 7z.h │ │ ├── 7zAlloc.h │ │ ├── 7zBuf.h │ │ ├── 7zCrc.h │ │ ├── 7zFile.h │ │ ├── 7zTypes.h │ │ ├── 7zVersion.h │ │ ├── Alloc.h │ │ ├── Bcj2.h │ │ ├── Bra.h │ │ ├── Compiler.h │ │ ├── CpuArch.h │ │ ├── Delta.h │ │ ├── LzFind.h │ │ ├── LzHash.h │ │ ├── Lzma2Dec.h │ │ ├── Lzma2DecMt.h │ │ ├── Lzma2Enc.h │ │ ├── Lzma86.h │ │ ├── LzmaDec.h │ │ ├── LzmaEnc.h │ │ ├── LzmaLib.h │ │ ├── Ppmd.h │ │ ├── Ppmd7.h │ │ ├── Precomp.h │ │ ├── RotateDefs.h │ │ ├── Sha256.h │ │ ├── Xz.h │ │ ├── XzCrc64.h │ │ └── XzEnc.h │ ├── lzma.vcxproj │ ├── lzma.vcxproj.filters │ └── src │ │ ├── 7zAlloc.c │ │ ├── 7zArcIn.c │ │ ├── 7zBuf.c │ │ ├── 7zBuf2.c │ │ ├── 7zCrc.c │ │ ├── 7zCrcOpt.c │ │ ├── 7zDec.c │ │ ├── 7zFile.c │ │ ├── 7zStream.c │ │ ├── Alloc.c │ │ ├── Bcj2.c │ │ ├── Bcj2Enc.c │ │ ├── Bra.c │ │ ├── Bra86.c │ │ ├── BraIA64.c │ │ ├── CpuArch.c │ │ ├── Delta.c │ │ ├── LzFind.c │ │ ├── LzFindOpt.c │ │ ├── Lzma2Dec.c │ │ ├── Lzma2DecMt.c │ │ ├── Lzma2Enc.c │ │ ├── Lzma86Dec.c │ │ ├── Lzma86Enc.c │ │ ├── LzmaDec.c │ │ ├── LzmaEnc.c │ │ ├── LzmaLib.c │ │ ├── Ppmd7.c │ │ ├── Ppmd7Dec.c │ │ ├── Ppmd7Enc.c │ │ ├── Sha256.c │ │ ├── Sha256Opt.c │ │ ├── Xz.c │ │ ├── XzCrc64.c │ │ ├── XzCrc64Opt.c │ │ ├── XzDec.c │ │ ├── XzEnc.c │ │ └── XzIn.c ├── qt │ ├── .gitignore │ └── README.md ├── rainterface │ ├── .gitignore │ ├── CMakeLists.txt │ ├── LICENSE │ ├── RA_Consoles.h │ ├── RA_Emulators.h │ ├── RA_Interface.cpp │ ├── RA_Interface.h │ ├── README.md │ ├── rainterface.vcxproj │ └── rainterface.vcxproj.filters ├── rapidjson │ ├── CMakeLists.txt │ ├── include │ │ └── rapidjson │ │ │ ├── allocators.h │ │ │ ├── cursorstreamwrapper.h │ │ │ ├── document.h │ │ │ ├── encodedstream.h │ │ │ ├── encodings.h │ │ │ ├── error │ │ │ ├── en.h │ │ │ └── error.h │ │ │ ├── filereadstream.h │ │ │ ├── filewritestream.h │ │ │ ├── fwd.h │ │ │ ├── internal │ │ │ ├── biginteger.h │ │ │ ├── clzll.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 │ └── license.txt ├── rapidyaml │ └── ryml.vcxproj ├── rcheevos │ ├── CMakeLists.txt │ ├── rcheevos.vcxproj │ └── rcheevos.vcxproj.filters ├── sdl2 │ ├── CMakeLists.txt │ ├── SDL.vcxproj │ ├── SDL.vcxproj.filters │ └── include │ │ └── SDL_config.h ├── simpleini │ ├── CMakeLists.txt │ ├── LICENCE.txt │ ├── include │ │ ├── ConvertUTF.h │ │ └── SimpleIni.h │ ├── simpleini.vcxproj │ ├── simpleini.vcxproj.filters │ └── src │ │ └── ConvertUTF.c ├── soundtouch │ ├── CMakeLists.txt │ ├── COPYING.TXT │ ├── README.html │ ├── SoundTouch.vcxproj │ ├── SoundTouch.vcxproj.filters │ ├── soundtouch │ │ ├── BPMDetect.h │ │ ├── FIFOSampleBuffer.h │ │ ├── FIFOSamplePipe.h │ │ ├── STTypes.h │ │ ├── SoundTouch.h │ │ └── soundtouch_config.h │ └── source │ │ ├── SoundStretch │ │ ├── WavFile.cpp │ │ └── WavFile.h │ │ └── SoundTouch │ │ ├── AAFilter.cpp │ │ ├── AAFilter.h │ │ ├── BPMDetect.cpp │ │ ├── FIFOSampleBuffer.cpp │ │ ├── FIRFilter.cpp │ │ ├── FIRFilter.h │ │ ├── InterpolateCubic.cpp │ │ ├── InterpolateCubic.h │ │ ├── InterpolateLinear.cpp │ │ ├── InterpolateLinear.h │ │ ├── InterpolateShannon.cpp │ │ ├── InterpolateShannon.h │ │ ├── PeakFinder.cpp │ │ ├── PeakFinder.h │ │ ├── RateTransposer.cpp │ │ ├── RateTransposer.h │ │ ├── SoundTouch.cpp │ │ ├── TDStretch.cpp │ │ ├── TDStretch.h │ │ ├── cpu_detect.h │ │ ├── cpu_detect_x86.cpp │ │ ├── mmx_optimized.cpp │ │ └── sse_optimized.cpp ├── svn_readme.txt ├── xbyak │ └── xbyak │ │ ├── COPYRIGHT │ │ ├── xbyak.h │ │ ├── xbyak_mnemonic.h │ │ └── xbyak_util.h ├── xz │ ├── CMakeLists.txt │ ├── config.h │ └── liblzma.vcxproj ├── zlib │ ├── CMakeLists.txt │ ├── ChangeLog │ ├── FAQ │ ├── README │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── examples │ │ ├── README.examples │ │ ├── enough.c │ │ ├── fitblk.c │ │ ├── gun.c │ │ ├── gzappend.c │ │ ├── gzjoin.c │ │ ├── gzlog.c │ │ ├── gzlog.h │ │ ├── zlib_how.html │ │ ├── zpipe.c │ │ └── zran.c │ ├── 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 │ ├── zlib.vcxproj.filters │ ├── zutil.c │ └── zutil.h ├── zstd │ ├── CMakeLists.txt │ ├── zstd.vcxproj │ └── zstd.vcxproj.filters └── zydis │ ├── CMakeLists.txt │ ├── LICENSE │ ├── README.md │ ├── dependencies │ └── zycore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── include │ │ └── Zycore │ │ │ ├── API │ │ │ ├── Memory.h │ │ │ ├── Process.h │ │ │ ├── Synchronization.h │ │ │ ├── Terminal.h │ │ │ └── Thread.h │ │ │ ├── Allocator.h │ │ │ ├── ArgParse.h │ │ │ ├── Atomic.h │ │ │ ├── Bitset.h │ │ │ ├── Comparison.h │ │ │ ├── Defines.h │ │ │ ├── Format.h │ │ │ ├── Internal │ │ │ ├── AtomicGNU.h │ │ │ └── AtomicMSVC.h │ │ │ ├── LibC.h │ │ │ ├── List.h │ │ │ ├── Object.h │ │ │ ├── Status.h │ │ │ ├── String.h │ │ │ ├── Types.h │ │ │ ├── Vector.h │ │ │ └── Zycore.h │ │ └── src │ │ ├── API │ │ ├── Memory.c │ │ ├── Process.c │ │ ├── Synchronization.c │ │ ├── Terminal.c │ │ └── Thread.c │ │ ├── Allocator.c │ │ ├── ArgParse.c │ │ ├── Bitset.c │ │ ├── Format.c │ │ ├── List.c │ │ ├── String.c │ │ ├── Vector.c │ │ └── Zycore.c │ ├── include │ ├── ZycoreExportConfig.h │ ├── Zydis │ │ ├── Decoder.h │ │ ├── DecoderTypes.h │ │ ├── Formatter.h │ │ ├── FormatterBuffer.h │ │ ├── Generated │ │ │ ├── EnumISAExt.h │ │ │ ├── EnumISASet.h │ │ │ ├── EnumInstructionCategory.h │ │ │ ├── EnumMnemonic.h │ │ │ └── EnumRegister.h │ │ ├── Internal │ │ │ ├── DecoderData.h │ │ │ ├── FormatterATT.h │ │ │ ├── FormatterBase.h │ │ │ ├── FormatterIntel.h │ │ │ ├── SharedData.h │ │ │ └── String.h │ │ ├── MetaInfo.h │ │ ├── Mnemonic.h │ │ ├── Register.h │ │ ├── SharedTypes.h │ │ ├── ShortString.h │ │ ├── Status.h │ │ ├── Utils.h │ │ └── Zydis.h │ └── ZydisExportConfig.h │ ├── src │ ├── Decoder.c │ ├── DecoderData.c │ ├── Formatter.c │ ├── FormatterATT.c │ ├── FormatterBase.c │ ├── FormatterBuffer.c │ ├── FormatterIntel.c │ ├── Generated │ │ ├── AccessedFlags.inc │ │ ├── DecoderTables.inc │ │ ├── EnumISAExt.inc │ │ ├── EnumISASet.inc │ │ ├── EnumInstructionCategory.inc │ │ ├── EnumMnemonic.inc │ │ ├── EnumRegister.inc │ │ ├── FormatterStrings.inc │ │ ├── InstructionDefinitions.inc │ │ ├── InstructionEncodings.inc │ │ └── OperandDefinitions.inc │ ├── MetaInfo.c │ ├── Mnemonic.c │ ├── Register.c │ ├── SharedData.c │ ├── String.c │ ├── Utils.c │ └── Zydis.c │ ├── zydis.vcxproj │ └── zydis.vcxproj.filters ├── CMakeLists.txt ├── CMakePresets.json ├── COPYING.GPLv3 ├── COPYING.LGPLv3 ├── PCSX2_qt.sln ├── README.md ├── bin ├── docs │ ├── Debugger.pdf │ ├── GPL.html │ ├── GameIndex.pdf │ └── debugger.txt ├── portable.ini └── resources │ ├── GameIndex.yaml │ ├── cover-placeholder.png │ ├── fonts │ ├── Roboto-Regular-copyright │ ├── Roboto-Regular.ttf │ ├── RobotoMono-Medium.ttf │ └── fa-solid-900.ttf │ ├── fullscreenui │ ├── applications-system.png │ ├── media-cdrom.png │ └── placeholder.png │ ├── game_controller_db.txt │ ├── icons │ ├── AppIconLarge.png │ ├── flags │ │ ├── NTSC-B.png │ │ ├── NTSC-C.png │ │ ├── NTSC-HK.png │ │ ├── NTSC-J.png │ │ ├── NTSC-K.png │ │ ├── NTSC-T.png │ │ ├── NTSC-U.png │ │ ├── Other.png │ │ ├── PAL-A.png │ │ ├── PAL-AF.png │ │ ├── PAL-AU.png │ │ ├── PAL-BE.png │ │ ├── PAL-E.png │ │ ├── PAL-F.png │ │ ├── PAL-FI.png │ │ ├── PAL-G.png │ │ ├── PAL-GR.png │ │ ├── PAL-I.png │ │ ├── PAL-IN.png │ │ ├── PAL-M.png │ │ ├── PAL-NL.png │ │ ├── PAL-NO.png │ │ ├── PAL-P.png │ │ ├── PAL-PL.png │ │ ├── PAL-R.png │ │ ├── PAL-S.png │ │ ├── PAL-SC.png │ │ ├── PAL-SW.png │ │ ├── PAL-SWI.png │ │ └── PAL-UK.png │ ├── star-0.png │ ├── star-1.png │ ├── star-2.png │ ├── star-3.png │ ├── star-4.png │ └── star-5.png │ ├── shaders │ ├── common │ │ ├── ffx_a.h │ │ ├── ffx_cas.h │ │ └── fxaa.fx │ ├── dx11 │ │ ├── cas.hlsl │ │ ├── convert.fx │ │ ├── imgui.fx │ │ ├── interlace.fx │ │ ├── merge.fx │ │ ├── present.fx │ │ ├── shadeboost.fx │ │ └── tfx.fx │ ├── opengl │ │ ├── cas.glsl │ │ ├── convert.glsl │ │ ├── imgui.glsl │ │ ├── interlace.glsl │ │ ├── merge.glsl │ │ ├── present.glsl │ │ ├── shadeboost.glsl │ │ ├── tfx_fs.glsl │ │ └── tfx_vgs.glsl │ └── vulkan │ │ ├── cas.glsl │ │ ├── convert.glsl │ │ ├── imgui.glsl │ │ ├── interlace.glsl │ │ ├── merge.glsl │ │ ├── present.glsl │ │ ├── shadeboost.glsl │ │ └── tfx.glsl │ └── sounds │ └── achievements │ ├── README.txt │ ├── lbsubmit.wav │ ├── message.wav │ └── unlock.wav ├── cmake ├── BuildParameters.cmake ├── CheckLib.cmake ├── FindFFMPEG.cmake ├── FindLibbacktrace.cmake ├── FindLibc.cmake ├── FindPCAP.cmake ├── FindVtune.cmake ├── Pcsx2Utils.cmake ├── SearchForStuff.cmake └── TargetArch.cmake ├── common ├── Align.h ├── AlignedMalloc.cpp ├── AlignedMalloc.h ├── Assertions.cpp ├── Assertions.h ├── BitCast.h ├── ByteSwap.h ├── CMakeLists.txt ├── CocoaTools.h ├── CocoaTools.mm ├── Console.cpp ├── Console.h ├── CrashHandler.cpp ├── CrashHandler.h ├── Darwin │ ├── DarwinMisc.cpp │ ├── DarwinMisc.h │ ├── DarwinSemaphore.cpp │ └── DarwinThreads.cpp ├── DynamicLibrary.cpp ├── DynamicLibrary.h ├── Easing.h ├── EnumOps.h ├── Error.cpp ├── Error.h ├── FastJmp.asm ├── FastJmp.cpp ├── FastJmp.h ├── FileSystem.cpp ├── FileSystem.h ├── General.cpp ├── General.h ├── HTTPDownloader.cpp ├── HTTPDownloader.h ├── HTTPDownloaderCurl.cpp ├── HTTPDownloaderCurl.h ├── HTTPDownloaderWinHTTP.cpp ├── HTTPDownloaderWinHTTP.h ├── HashCombine.h ├── HeapArray.h ├── HeterogeneousContainers.h ├── Image.cpp ├── Image.h ├── LRUCache.h ├── Linux │ ├── LnxHostSys.cpp │ ├── LnxMisc.cpp │ └── LnxThreads.cpp ├── MD5Digest.cpp ├── MD5Digest.h ├── MRCHelpers.h ├── MathUtils.h ├── MemorySettingsInterface.cpp ├── MemorySettingsInterface.h ├── Misc.cpp ├── Path.h ├── Pcsx2Defs.h ├── Pcsx2Types.h ├── Perf.cpp ├── Perf.h ├── PrecompiledHeader.cpp ├── PrecompiledHeader.h ├── ProgressCallback.cpp ├── ProgressCallback.h ├── ReadbackSpinManager.cpp ├── ReadbackSpinManager.h ├── RedtapeWilCom.h ├── RedtapeWindows.h ├── ScopedGuard.h ├── Semaphore.cpp ├── SettingsInterface.h ├── SettingsWrapper.cpp ├── SettingsWrapper.h ├── StackWalker.cpp ├── StackWalker.h ├── StringUtil.cpp ├── StringUtil.h ├── ThreadPool.cpp ├── ThreadPool.h ├── Threading.h ├── Timer.cpp ├── Timer.h ├── TraceLog.h ├── WAVWriter.cpp ├── WAVWriter.h ├── WindowInfo.cpp ├── WindowInfo.h ├── Windows │ ├── WinHostSys.cpp │ ├── WinMisc.cpp │ └── WinThreads.cpp ├── WrappedMemCopy.h ├── ZipHelpers.h ├── boost_spsc_queue.hpp ├── common.vcxproj ├── common.vcxproj.filters ├── emitter │ ├── LnxCpuDetect.cpp │ ├── WinCpuDetect.cpp │ ├── avx.cpp │ ├── bmi.cpp │ ├── cpudetect.cpp │ ├── fpu.cpp │ ├── groups.cpp │ ├── implement │ │ ├── avx.h │ │ ├── bmi.h │ │ ├── dwshift.h │ │ ├── group1.h │ │ ├── group2.h │ │ ├── group3.h │ │ ├── helpers.h │ │ ├── incdec.h │ │ ├── jmpcall.h │ │ ├── movs.h │ │ ├── simd_arithmetic.h │ │ ├── simd_comparisons.h │ │ ├── simd_helpers.h │ │ ├── simd_moremovs.h │ │ ├── simd_shufflepack.h │ │ ├── simd_templated_helpers.h │ │ ├── test.h │ │ └── xchg.h │ ├── instructions.h │ ├── internal.h │ ├── jmp.cpp │ ├── legacy.cpp │ ├── legacy_instructions.h │ ├── legacy_internal.h │ ├── legacy_sse.cpp │ ├── legacy_types.h │ ├── movs.cpp │ ├── simd.cpp │ ├── tools.h │ ├── x86_intrin.h │ ├── x86emitter.cpp │ ├── x86emitter.h │ └── x86types.h └── vsprops │ ├── BaseProjectConfig.props │ ├── BaseProperties.props │ ├── CodeGen_Debug.props │ ├── CodeGen_Devel.props │ ├── CodeGen_Release.props │ ├── CommonLibrary.props │ ├── GenerateSCMVersion.props │ ├── IncrementalLinking.props │ ├── ProjectConfigAVX2.props │ ├── QtCompile.props │ ├── QtCompile.targets │ ├── QtCompile.xml │ ├── WinSDK.props │ ├── common.props │ ├── preBuild.cmd │ └── readme.txt ├── crowdin.yml ├── pcsx2-gsrunner ├── CMakeLists.txt ├── Main.cpp ├── pcsx2-gsrunner.vcxproj ├── pcsx2-gsrunner.vcxproj.filters ├── test_check_dumps.py └── test_run_dumps.py ├── pcsx2-qt ├── AboutDialog.cpp ├── AboutDialog.h ├── AboutDialog.ui ├── AutoUpdaterDialog.cpp ├── AutoUpdaterDialog.h ├── AutoUpdaterDialog.ui ├── CMakeLists.txt ├── ColorPickerButton.cpp ├── ColorPickerButton.h ├── CoverDownloadDialog.cpp ├── CoverDownloadDialog.h ├── CoverDownloadDialog.ui ├── Debugger │ ├── BreakpointDialog.cpp │ ├── BreakpointDialog.h │ ├── BreakpointDialog.ui │ ├── CpuWidget.cpp │ ├── CpuWidget.h │ ├── CpuWidget.ui │ ├── DebuggerWindow.cpp │ ├── DebuggerWindow.h │ ├── DebuggerWindow.ui │ ├── DisassemblyWidget.cpp │ ├── DisassemblyWidget.h │ ├── DisassemblyWidget.ui │ ├── MemoryViewWidget.cpp │ ├── MemoryViewWidget.h │ ├── MemoryViewWidget.ui │ ├── Models │ │ ├── BreakpointModel.cpp │ │ ├── BreakpointModel.h │ │ ├── StackModel.cpp │ │ ├── StackModel.h │ │ ├── ThreadModel.cpp │ │ └── ThreadModel.h │ ├── RegisterWidget.cpp │ ├── RegisterWidget.h │ └── RegisterWidget.ui ├── DisplayWidget.cpp ├── DisplayWidget.h ├── EarlyHardwareCheck.cpp ├── GameList │ ├── EmptyGameListWidget.ui │ ├── GameListModel.cpp │ ├── GameListModel.h │ ├── GameListRefreshThread.cpp │ ├── GameListRefreshThread.h │ ├── GameListWidget.cpp │ ├── GameListWidget.h │ └── GameListWidget.ui ├── MainWindow.cpp ├── MainWindow.h ├── MainWindow.ui ├── PrecompiledHeader.cpp ├── PrecompiledHeader.h ├── QtHost.cpp ├── QtHost.h ├── QtKeyCodes.cpp ├── QtProgressCallback.cpp ├── QtProgressCallback.h ├── QtUtils.cpp ├── QtUtils.h ├── SettingWidgetBinder.h ├── Settings │ ├── AchievementLoginDialog.cpp │ ├── AchievementLoginDialog.h │ ├── AchievementLoginDialog.ui │ ├── AchievementSettingsWidget.cpp │ ├── AchievementSettingsWidget.h │ ├── AchievementSettingsWidget.ui │ ├── AdvancedSettingsWidget.cpp │ ├── AdvancedSettingsWidget.h │ ├── AdvancedSettingsWidget.ui │ ├── AudioSettingsWidget.cpp │ ├── AudioSettingsWidget.h │ ├── AudioSettingsWidget.ui │ ├── BIOSSettingsWidget.cpp │ ├── BIOSSettingsWidget.h │ ├── BIOSSettingsWidget.ui │ ├── ControllerBindingWidget.ui │ ├── ControllerBindingWidget_DualShock2.ui │ ├── ControllerBindingWidgets.cpp │ ├── ControllerBindingWidgets.h │ ├── ControllerGlobalSettingsWidget.cpp │ ├── ControllerGlobalSettingsWidget.h │ ├── ControllerGlobalSettingsWidget.ui │ ├── ControllerLEDSettingsDialog.ui │ ├── ControllerMacroEditWidget.ui │ ├── ControllerMacroWidget.ui │ ├── ControllerMouseSettingsDialog.ui │ ├── ControllerSettingWidgetBinder.h │ ├── ControllerSettingsDialog.cpp │ ├── ControllerSettingsDialog.h │ ├── ControllerSettingsDialog.ui │ ├── DEV9DnsHostDialog.cpp │ ├── DEV9DnsHostDialog.h │ ├── DEV9DnsHostDialog.ui │ ├── DEV9SettingsWidget.cpp │ ├── DEV9SettingsWidget.h │ ├── DEV9SettingsWidget.ui │ ├── DEV9UiCommon.cpp │ ├── DEV9UiCommon.h │ ├── DebugSettingsWidget.cpp │ ├── DebugSettingsWidget.h │ ├── DebugSettingsWidget.ui │ ├── EmulationSettingsWidget.cpp │ ├── EmulationSettingsWidget.h │ ├── EmulationSettingsWidget.ui │ ├── FolderSettingsWidget.cpp │ ├── FolderSettingsWidget.h │ ├── FolderSettingsWidget.ui │ ├── GameCheatSettingsWidget.cpp │ ├── GameCheatSettingsWidget.h │ ├── GameCheatSettingsWidget.ui │ ├── GameFixSettingsWidget.cpp │ ├── GameFixSettingsWidget.h │ ├── GameFixSettingsWidget.ui │ ├── GameListSettingsWidget.cpp │ ├── GameListSettingsWidget.h │ ├── GameListSettingsWidget.ui │ ├── GamePatchDetailsWidget.ui │ ├── GamePatchSettingsWidget.cpp │ ├── GamePatchSettingsWidget.h │ ├── GamePatchSettingsWidget.ui │ ├── GameSummaryWidget.cpp │ ├── GameSummaryWidget.h │ ├── GameSummaryWidget.ui │ ├── GraphicsSettingsWidget.cpp │ ├── GraphicsSettingsWidget.h │ ├── GraphicsSettingsWidget.ui │ ├── HddCreateQt.cpp │ ├── HddCreateQt.h │ ├── HotkeySettingsWidget.cpp │ ├── HotkeySettingsWidget.h │ ├── InputBindingDialog.cpp │ ├── InputBindingDialog.h │ ├── InputBindingDialog.ui │ ├── InputBindingWidget.cpp │ ├── InputBindingWidget.h │ ├── InterfaceSettingsWidget.cpp │ ├── InterfaceSettingsWidget.h │ ├── InterfaceSettingsWidget.ui │ ├── MemoryCardConvertDialog.cpp │ ├── MemoryCardConvertDialog.h │ ├── MemoryCardConvertDialog.ui │ ├── MemoryCardConvertWorker.cpp │ ├── MemoryCardConvertWorker.h │ ├── MemoryCardCreateDialog.cpp │ ├── MemoryCardCreateDialog.h │ ├── MemoryCardCreateDialog.ui │ ├── MemoryCardSettingsWidget.cpp │ ├── MemoryCardSettingsWidget.h │ ├── MemoryCardSettingsWidget.ui │ ├── PatchDetailsWidget.ui │ ├── SettingsDialog.cpp │ ├── SettingsDialog.h │ ├── SettingsDialog.ui │ ├── USBBindingWidget_DrivingForce.ui │ ├── USBBindingWidget_GTForce.ui │ └── USBDeviceWidget.ui ├── SetupWizardDialog.cpp ├── SetupWizardDialog.h ├── SetupWizardDialog.ui ├── Themes.cpp ├── Tools │ └── InputRecording │ │ ├── InputRecordingViewer.cpp │ │ ├── InputRecordingViewer.h │ │ ├── InputRecordingViewer.ui │ │ ├── NewInputRecordingDlg.cpp │ │ ├── NewInputRecordingDlg.h │ │ └── NewInputRecordingDlg.ui ├── Translations.cpp ├── Translations │ ├── pcsx2-qt_af-ZA.ts │ ├── pcsx2-qt_ar-SA.ts │ ├── pcsx2-qt_ca-ES.ts │ ├── pcsx2-qt_cs-CZ.ts │ ├── pcsx2-qt_da-DK.ts │ ├── pcsx2-qt_de-DE.ts │ ├── pcsx2-qt_el-GR.ts │ ├── pcsx2-qt_en.ts │ ├── pcsx2-qt_es-419.ts │ ├── pcsx2-qt_es-ES.ts │ ├── pcsx2-qt_fa-IR.ts │ ├── pcsx2-qt_fi-FI.ts │ ├── pcsx2-qt_fr-FR.ts │ ├── pcsx2-qt_he-IL.ts │ ├── pcsx2-qt_hu-HU.ts │ ├── pcsx2-qt_id-ID.ts │ ├── pcsx2-qt_it-IT.ts │ ├── pcsx2-qt_ja-JP.ts │ ├── pcsx2-qt_ko-KR.ts │ ├── pcsx2-qt_nl-NL.ts │ ├── pcsx2-qt_no-NO.ts │ ├── pcsx2-qt_pl-PL.ts │ ├── pcsx2-qt_pt-BR.ts │ ├── pcsx2-qt_pt-PT.ts │ ├── pcsx2-qt_ro-RO.ts │ ├── pcsx2-qt_ru-RU.ts │ ├── pcsx2-qt_sr-SP.ts │ ├── pcsx2-qt_sv-SE.ts │ ├── pcsx2-qt_tr-TR.ts │ ├── pcsx2-qt_uk-UA.ts │ ├── pcsx2-qt_vi-VN.ts │ ├── pcsx2-qt_zh-CN.ts │ ├── pcsx2-qt_zh-TW.ts │ ├── update_en_translation.bat │ └── update_glyph_ranges.py ├── pcsx2-qt.vcxproj ├── pcsx2-qt.vcxproj.filters └── resources │ ├── generate.sh │ ├── icons │ ├── AppIcon64.png │ ├── QT.png │ ├── applications-system-24.png │ ├── black │ │ ├── index.theme │ │ └── svg │ │ │ ├── arrow-left-right-line.svg │ │ │ ├── artboard-2-line.svg │ │ │ ├── at.svg │ │ │ ├── brush-line.svg │ │ │ ├── checkbox-multiple-blank-line.svg │ │ │ ├── chip-line.svg │ │ │ ├── close-line.svg │ │ │ ├── controller-line.svg │ │ │ ├── controller-strike-line.svg │ │ │ ├── delete-back-2-line.svg │ │ │ ├── disc-2-line.svg │ │ │ ├── disc-eject-line.svg │ │ │ ├── discord.svg │ │ │ ├── door-open-line.svg │ │ │ ├── download-2-line.svg │ │ │ ├── eject-line.svg │ │ │ ├── emulation-line.svg │ │ │ ├── file-add-line.svg │ │ │ ├── file-line.svg │ │ │ ├── file-list-line.svg │ │ │ ├── file-reduce-line.svg │ │ │ ├── file-search-line.svg │ │ │ ├── file-settings-line.svg │ │ │ ├── filter-line.svg │ │ │ ├── flashlight-line.svg │ │ │ ├── flask-line.svg │ │ │ ├── floppy-in-line.svg │ │ │ ├── floppy-out-line.svg │ │ │ ├── folder-add-line.svg │ │ │ ├── folder-open-line.svg │ │ │ ├── folder-reduce-line.svg │ │ │ ├── folder-settings-line.svg │ │ │ ├── fullscreen-line.svg │ │ │ ├── function-line.svg │ │ │ ├── github.svg │ │ │ ├── global-line.svg │ │ │ ├── hammer-line.svg │ │ │ ├── heart-circle-line.svg │ │ │ ├── heart-monitor-line.svg │ │ │ ├── image-fill.svg │ │ │ ├── interface-line.svg │ │ │ ├── keyboard-line.svg │ │ │ ├── lightbulb-line.svg │ │ │ ├── list-check.svg │ │ │ ├── login-box-line.svg │ │ │ ├── memcard-line.svg │ │ │ ├── mouse-line.svg │ │ │ ├── pause-line.svg │ │ │ ├── play-line.svg │ │ │ ├── price-tag-3-line.svg │ │ │ ├── refresh-line.svg │ │ │ ├── restart-line.svg │ │ │ ├── save-3-line.svg │ │ │ ├── screenshot-2-line.svg │ │ │ ├── settings-3-line.svg │ │ │ ├── shut-down-line.svg │ │ │ ├── tools-line.svg │ │ │ ├── trophy-line.svg │ │ │ ├── tv-2-line.svg │ │ │ ├── usb-fill.svg │ │ │ ├── volume-up-line.svg │ │ │ ├── warning-line.svg │ │ │ ├── window-2-line.svg │ │ │ ├── zoom-in-line.svg │ │ │ └── zoom-out-line.svg │ ├── logo.png │ ├── media-optical-24.png │ ├── media-optical-gear-24.png │ ├── media-optical.png │ ├── update.png │ └── white │ │ ├── index.theme │ │ └── svg │ │ ├── arrow-left-right-line.svg │ │ ├── artboard-2-line.svg │ │ ├── at.svg │ │ ├── brush-line.svg │ │ ├── checkbox-multiple-blank-line.svg │ │ ├── chip-line.svg │ │ ├── close-line.svg │ │ ├── controller-line.svg │ │ ├── controller-strike-line.svg │ │ ├── delete-back-2-line.svg │ │ ├── disc-2-line.svg │ │ ├── disc-eject-line.svg │ │ ├── discord.svg │ │ ├── door-open-line.svg │ │ ├── download-2-line.svg │ │ ├── eject-line.svg │ │ ├── emulation-line.svg │ │ ├── file-add-line.svg │ │ ├── file-line.svg │ │ ├── file-list-line.svg │ │ ├── file-reduce-line.svg │ │ ├── file-search-line.svg │ │ ├── file-settings-line.svg │ │ ├── filter-line.svg │ │ ├── flashlight-line.svg │ │ ├── flask-line.svg │ │ ├── floppy-in-line.svg │ │ ├── floppy-out-line.svg │ │ ├── folder-add-line.svg │ │ ├── folder-open-line.svg │ │ ├── folder-reduce-line.svg │ │ ├── folder-settings-line.svg │ │ ├── fullscreen-line.svg │ │ ├── function-line.svg │ │ ├── github.svg │ │ ├── global-line.svg │ │ ├── hammer-line.svg │ │ ├── heart-circle-line.svg │ │ ├── heart-monitor-line.svg │ │ ├── image-fill.svg │ │ ├── interface-line.svg │ │ ├── keyboard-line.svg │ │ ├── lightbulb-line.svg │ │ ├── list-check.svg │ │ ├── login-box-line.svg │ │ ├── memcard-line.svg │ │ ├── mouse-line.svg │ │ ├── pause-line.svg │ │ ├── play-line.svg │ │ ├── price-tag-3-line.svg │ │ ├── refresh-line.svg │ │ ├── restart-line.svg │ │ ├── save-3-line.svg │ │ ├── screenshot-2-line.svg │ │ ├── settings-3-line.svg │ │ ├── shut-down-line.svg │ │ ├── tools-line.svg │ │ ├── trophy-line.svg │ │ ├── tv-2-line.svg │ │ ├── usb-fill.svg │ │ ├── volume-up-line.svg │ │ ├── warning-line.svg │ │ ├── window-2-line.svg │ │ ├── zoom-in-line.svg │ │ └── zoom-out-line.svg │ ├── images │ ├── DrivingForce.png │ ├── GTForce.png │ └── dualshock-2.png │ └── resources.qrc ├── pcsx2-winrt ├── App.cpp ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── Package.appxmanifest ├── PropertySheet.props ├── README.md ├── UWPUtils.h ├── packages.config ├── pcsx2-winrt.vcxproj ├── pcsx2-winrt.vcxproj.filters └── pcsx2-winrt_TemporaryKey.pfx ├── pcsx2 ├── Achievements.cpp ├── Achievements.h ├── AsyncFileReader.h ├── CDVD │ ├── BlockdumpFileReader.cpp │ ├── CDVD.cpp │ ├── CDVD.h │ ├── CDVD_internal.h │ ├── CDVDcommon.cpp │ ├── CDVDcommon.h │ ├── CDVDdiscReader.cpp │ ├── CDVDdiscReader.h │ ├── CDVDdiscThread.cpp │ ├── CDVDisoReader.cpp │ ├── ChdFileReader.cpp │ ├── ChdFileReader.h │ ├── ChunksCache.cpp │ ├── ChunksCache.h │ ├── CompressedFileReader.cpp │ ├── CompressedFileReader.h │ ├── CsoFileReader.cpp │ ├── CsoFileReader.h │ ├── Darwin │ │ ├── DriveUtility.cpp │ │ └── IOCtlSrc.cpp │ ├── GzippedFileReader.cpp │ ├── GzippedFileReader.h │ ├── InputIsoFile.cpp │ ├── IsoFileFormats.h │ ├── IsoReader.cpp │ ├── IsoReader.h │ ├── Linux │ │ ├── DriveUtility.cpp │ │ └── IOCtlSrc.cpp │ ├── OutputIsoFile.cpp │ ├── Ps1CD.cpp │ ├── Ps1CD.h │ ├── ThreadedFileReader.cpp │ ├── ThreadedFileReader.h │ ├── Windows │ │ ├── DriveUtility.cpp │ │ └── IOCtlSrc.cpp │ └── zlib_indexed.h ├── CMakeLists.txt ├── COP0.cpp ├── COP0.h ├── COP2.cpp ├── Cache.cpp ├── Cache.h ├── Common.h ├── Config.h ├── Counters.cpp ├── Counters.h ├── DEV9 │ ├── ATA │ │ ├── ATA.h │ │ ├── ATA_Info.cpp │ │ ├── ATA_State.cpp │ │ ├── ATA_Transfer.cpp │ │ ├── Commands │ │ │ ├── ATA_CmdDMA.cpp │ │ │ ├── ATA_CmdExecuteDeviceDiag.cpp │ │ │ ├── ATA_CmdNoData.cpp │ │ │ ├── ATA_CmdPIOData.cpp │ │ │ ├── ATA_CmdSMART.cpp │ │ │ ├── ATA_Command.cpp │ │ │ └── ATA_SCE.cpp │ │ ├── HddCreate.cpp │ │ └── HddCreate.h │ ├── AdapterUtils.cpp │ ├── AdapterUtils.h │ ├── DEV9.cpp │ ├── DEV9.h │ ├── InternalServers │ │ ├── DHCP_Server.cpp │ │ ├── DHCP_Server.h │ │ ├── DNS_Logger.cpp │ │ ├── DNS_Logger.h │ │ ├── DNS_Server.cpp │ │ └── DNS_Server.h │ ├── PacketReader │ │ ├── ARP │ │ │ ├── ARP_Packet.cpp │ │ │ ├── ARP_Packet.h │ │ │ ├── ARP_PacketEditor.cpp │ │ │ └── ARP_PacketEditor.h │ │ ├── EthernetFrame.cpp │ │ ├── EthernetFrame.h │ │ ├── EthernetFrameEditor.cpp │ │ ├── EthernetFrameEditor.h │ │ ├── IP │ │ │ ├── ICMP │ │ │ │ ├── ICMP_Packet.cpp │ │ │ │ └── ICMP_Packet.h │ │ │ ├── IP_Address.h │ │ │ ├── IP_Options.cpp │ │ │ ├── IP_Options.h │ │ │ ├── IP_Packet.cpp │ │ │ ├── IP_Packet.h │ │ │ ├── IP_Payload.h │ │ │ ├── TCP │ │ │ │ ├── TCP_Options.cpp │ │ │ │ ├── TCP_Options.h │ │ │ │ ├── TCP_Packet.cpp │ │ │ │ └── TCP_Packet.h │ │ │ └── UDP │ │ │ │ ├── DHCP │ │ │ │ ├── DHCP_Options.cpp │ │ │ │ ├── DHCP_Options.h │ │ │ │ ├── DHCP_Packet.cpp │ │ │ │ └── DHCP_Packet.h │ │ │ │ ├── DNS │ │ │ │ ├── DNS_Classes.cpp │ │ │ │ ├── DNS_Classes.h │ │ │ │ ├── DNS_Enums.h │ │ │ │ ├── DNS_Packet.cpp │ │ │ │ └── DNS_Packet.h │ │ │ │ ├── UDP_Packet.cpp │ │ │ │ └── UDP_Packet.h │ │ ├── MAC_Address.h │ │ ├── NetLib.h │ │ └── Payload.h │ ├── Sessions │ │ ├── BaseSession.cpp │ │ ├── BaseSession.h │ │ ├── ICMP_Session │ │ │ ├── ICMP_Session.cpp │ │ │ └── ICMP_Session.h │ │ ├── TCP_Session │ │ │ ├── TCP_Session.cpp │ │ │ ├── TCP_Session.h │ │ │ ├── TCP_Session_In.cpp │ │ │ └── TCP_Session_Out.cpp │ │ └── UDP_Session │ │ │ ├── UDP_BaseSession.h │ │ │ ├── UDP_FixedPort.cpp │ │ │ ├── UDP_FixedPort.h │ │ │ ├── UDP_Session.cpp │ │ │ └── UDP_Session.h │ ├── SimpleQueue.h │ ├── ThreadSafeMap.h │ ├── Win32 │ │ ├── pcap_io_win32.cpp │ │ ├── pcap_io_win32_funcs.h │ │ ├── tap-win32.cpp │ │ └── tap.h │ ├── flash.cpp │ ├── net.cpp │ ├── net.h │ ├── pcap_io.cpp │ ├── pcap_io.h │ ├── smap.cpp │ ├── smap.h │ ├── sockets.cpp │ └── sockets.h ├── Darwin │ └── DarwinFlatFileReader.cpp ├── DebugTools │ ├── BiosDebugData.cpp │ ├── BiosDebugData.h │ ├── Breakpoints.cpp │ ├── Breakpoints.h │ ├── Debug.h │ ├── DebugInterface.cpp │ ├── DebugInterface.h │ ├── DisASM.h │ ├── DisR3000A.cpp │ ├── DisR5900asm.cpp │ ├── DisVU0Micro.cpp │ ├── DisVU1Micro.cpp │ ├── DisVUmicro.h │ ├── DisVUops.h │ ├── DisassemblyManager.cpp │ ├── DisassemblyManager.h │ ├── ExpressionParser.cpp │ ├── ExpressionParser.h │ ├── MIPSAnalyst.cpp │ ├── MIPSAnalyst.h │ ├── MipsAssembler.cpp │ ├── MipsAssembler.h │ ├── MipsAssemblerTables.cpp │ ├── MipsAssemblerTables.h │ ├── MipsStackWalk.cpp │ ├── MipsStackWalk.h │ ├── SymbolMap.cpp │ └── SymbolMap.h ├── Dmac.cpp ├── Dmac.h ├── Docs │ ├── .gitignore │ ├── Configuration_Guide │ │ ├── Configuration_Guide.md │ │ ├── PCSX2_First_Time_Configuration.png │ │ ├── PCSX2_First_Time_Configuration_bios.png │ │ └── PCSX2_First_Time_Configuration_plugins.png │ ├── Debugger.md │ ├── Documentation_README.md │ ├── GPL.txt │ ├── GameIndex.md │ ├── License.txt │ ├── PCSX2_FAQ.md │ ├── README.md │ ├── eisvogel.tex │ ├── gamedb-schema.json │ └── gen-docs.sh ├── Elfheader.cpp ├── Elfheader.h ├── FPU.cpp ├── FW.cpp ├── FW.h ├── FiFo.cpp ├── GS.cpp ├── GS.h ├── GS │ ├── GS.cpp │ ├── GS.h │ ├── GS.natvis │ ├── GSAlignedClass.cpp │ ├── GSAlignedClass.h │ ├── GSBlock.cpp │ ├── GSBlock.h │ ├── GSCapture.cpp │ ├── GSCapture.h │ ├── GSClut.cpp │ ├── GSClut.h │ ├── GSCrc.cpp │ ├── GSCrc.h │ ├── GSDrawingContext.cpp │ ├── GSDrawingContext.h │ ├── GSDrawingEnvironment.h │ ├── GSDump.cpp │ ├── GSDump.h │ ├── GSExtra.h │ ├── GSGL.h │ ├── GSIntrin.h │ ├── GSLocalMemory.cpp │ ├── GSLocalMemory.h │ ├── GSLocalMemoryMultiISA.cpp │ ├── GSLzma.cpp │ ├── GSLzma.h │ ├── GSPerfMon.cpp │ ├── GSPerfMon.h │ ├── GSPng.cpp │ ├── GSPng.h │ ├── GSRegs.h │ ├── GSRingHeap.cpp │ ├── GSRingHeap.h │ ├── GSState.cpp │ ├── GSState.h │ ├── GSTables.cpp │ ├── GSTables.h │ ├── GSThread.h │ ├── GSThread_CXX11.h │ ├── GSUtil.cpp │ ├── GSUtil.h │ ├── GSVector.cpp │ ├── GSVector.h │ ├── GSVector4.h │ ├── GSVector4i.h │ ├── GSVector8.h │ ├── GSVector8i.h │ ├── GSXXH.cpp │ ├── GSXXH.h │ ├── MultiISA.cpp │ ├── MultiISA.h │ ├── Renderers │ │ ├── Common │ │ │ ├── GSDevice.cpp │ │ │ ├── GSDevice.h │ │ │ ├── GSDirtyRect.cpp │ │ │ ├── GSDirtyRect.h │ │ │ ├── GSFastList.h │ │ │ ├── GSFunctionMap.cpp │ │ │ ├── GSFunctionMap.h │ │ │ ├── GSRenderer.cpp │ │ │ ├── GSRenderer.h │ │ │ ├── GSTexture.cpp │ │ │ ├── GSTexture.h │ │ │ ├── GSVertex.h │ │ │ ├── GSVertexTrace.cpp │ │ │ ├── GSVertexTrace.h │ │ │ └── GSVertexTraceFMM.cpp │ │ ├── DX11 │ │ │ ├── D3D.cpp │ │ │ ├── D3D.h │ │ │ ├── D3D11ShaderCache.cpp │ │ │ ├── D3D11ShaderCache.h │ │ │ ├── GSDevice11.cpp │ │ │ ├── GSDevice11.h │ │ │ ├── GSTexture11.cpp │ │ │ ├── GSTexture11.h │ │ │ └── GSTextureFX11.cpp │ │ ├── DX12 │ │ │ ├── D3D12Builders.cpp │ │ │ ├── D3D12Builders.h │ │ │ ├── D3D12Context.cpp │ │ │ ├── D3D12Context.h │ │ │ ├── D3D12DescriptorHeapManager.cpp │ │ │ ├── D3D12DescriptorHeapManager.h │ │ │ ├── D3D12ShaderCache.cpp │ │ │ ├── D3D12ShaderCache.h │ │ │ ├── D3D12StreamBuffer.cpp │ │ │ ├── D3D12StreamBuffer.h │ │ │ ├── GSDevice12.cpp │ │ │ ├── GSDevice12.h │ │ │ ├── GSTexture12.cpp │ │ │ └── GSTexture12.h │ │ ├── HW │ │ │ ├── GSHwHack.cpp │ │ │ ├── GSHwHack.h │ │ │ ├── GSRendererHW.cpp │ │ │ ├── GSRendererHW.h │ │ │ ├── GSRendererHWMultiISA.cpp │ │ │ ├── GSTextureCache.cpp │ │ │ ├── GSTextureCache.h │ │ │ ├── GSTextureReplacementLoaders.cpp │ │ │ ├── GSTextureReplacements.cpp │ │ │ ├── GSTextureReplacements.h │ │ │ └── GSVertexHW.h │ │ ├── Metal │ │ │ ├── GSDeviceMTL.h │ │ │ ├── GSDeviceMTL.mm │ │ │ ├── GSMTLDeviceInfo.h │ │ │ ├── GSMTLDeviceInfo.mm │ │ │ ├── GSMTLShaderCommon.h │ │ │ ├── GSMTLSharedHeader.h │ │ │ ├── GSMetalCPPAccessible.h │ │ │ ├── GSTextureMTL.h │ │ │ ├── GSTextureMTL.mm │ │ │ ├── cas.metal │ │ │ ├── convert.metal │ │ │ ├── fxaa.metal │ │ │ ├── interlace.metal │ │ │ ├── merge.metal │ │ │ ├── misc.metal │ │ │ ├── present.metal │ │ │ └── tfx.metal │ │ ├── Null │ │ │ ├── GSRendererNull.cpp │ │ │ └── GSRendererNull.h │ │ ├── OpenGL │ │ │ ├── GLContext.cpp │ │ │ ├── GLContext.h │ │ │ ├── GLContextAGL.h │ │ │ ├── GLContextAGL.mm │ │ │ ├── GLContextEGL.cpp │ │ │ ├── GLContextEGL.h │ │ │ ├── GLContextEGLWayland.cpp │ │ │ ├── GLContextEGLWayland.h │ │ │ ├── GLContextEGLX11.cpp │ │ │ ├── GLContextEGLX11.h │ │ │ ├── GLContextWGL.cpp │ │ │ ├── GLContextWGL.h │ │ │ ├── GLProgram.cpp │ │ │ ├── GLProgram.h │ │ │ ├── GLShaderCache.cpp │ │ │ ├── GLShaderCache.h │ │ │ ├── GLState.cpp │ │ │ ├── GLState.h │ │ │ ├── GLStreamBuffer.cpp │ │ │ ├── GLStreamBuffer.h │ │ │ ├── GSDeviceOGL.cpp │ │ │ ├── GSDeviceOGL.h │ │ │ ├── GSTextureOGL.cpp │ │ │ └── GSTextureOGL.h │ │ ├── SW │ │ │ ├── GSDrawScanline.cpp │ │ │ ├── GSDrawScanline.h │ │ │ ├── GSDrawScanlineCodeGenerator.all.cpp │ │ │ ├── GSDrawScanlineCodeGenerator.all.h │ │ │ ├── GSDrawScanlineCodeGenerator.cpp │ │ │ ├── GSDrawScanlineCodeGenerator.h │ │ │ ├── GSNewCodeGenerator.cpp │ │ │ ├── GSNewCodeGenerator.h │ │ │ ├── GSRasterizer.cpp │ │ │ ├── GSRasterizer.h │ │ │ ├── GSRendererSW.cpp │ │ │ ├── GSRendererSW.h │ │ │ ├── GSScanlineEnvironment.h │ │ │ ├── GSSetupPrimCodeGenerator.all.cpp │ │ │ ├── GSSetupPrimCodeGenerator.all.h │ │ │ ├── GSSetupPrimCodeGenerator.cpp │ │ │ ├── GSSetupPrimCodeGenerator.h │ │ │ ├── GSTextureCacheSW.cpp │ │ │ ├── GSTextureCacheSW.h │ │ │ ├── GSTextureSW.cpp │ │ │ ├── GSTextureSW.h │ │ │ ├── GSVertexSW.cpp │ │ │ └── GSVertexSW.h │ │ └── Vulkan │ │ │ ├── GSDeviceVK.cpp │ │ │ ├── GSDeviceVK.h │ │ │ ├── GSTextureVK.cpp │ │ │ ├── GSTextureVK.h │ │ │ ├── VKBuilders.cpp │ │ │ ├── VKBuilders.h │ │ │ ├── VKContext.cpp │ │ │ ├── VKContext.h │ │ │ ├── VKEntryPoints.h │ │ │ ├── VKEntryPoints.inl │ │ │ ├── VKLoader.cpp │ │ │ ├── VKLoader.h │ │ │ ├── VKShaderCache.cpp │ │ │ ├── VKShaderCache.h │ │ │ ├── VKStreamBuffer.cpp │ │ │ ├── VKStreamBuffer.h │ │ │ ├── VKSwapChain.cpp │ │ │ ├── VKSwapChain.h │ │ │ ├── VKUtil.cpp │ │ │ ├── VKUtil.h │ │ │ └── vk_mem_alloc.cpp │ └── docs │ │ └── TextureCache.odg ├── GSDumpReplayer.cpp ├── GSDumpReplayer.h ├── GameDatabase.cpp ├── GameDatabase.h ├── GameList.cpp ├── GameList.h ├── Gif.cpp ├── Gif.h ├── Gif_Logger.cpp ├── Gif_Unit.cpp ├── Gif_Unit.h ├── Hardware.h ├── Host.cpp ├── Host.h ├── Hotkeys.cpp ├── Hw.cpp ├── Hw.h ├── HwRead.cpp ├── HwWrite.cpp ├── INISettingsInterface.cpp ├── INISettingsInterface.h ├── IPU │ ├── IPU.cpp │ ├── IPU.h │ ├── IPU_Fifo.cpp │ ├── IPU_Fifo.h │ ├── IPU_MultiISA.cpp │ ├── IPU_MultiISA.h │ ├── IPUdither.cpp │ ├── IPUdma.cpp │ ├── IPUdma.h │ ├── mpeg2_vlc.h │ ├── yuv2rgb.cpp │ └── yuv2rgb.h ├── ImGui │ ├── FullscreenUI.cpp │ ├── FullscreenUI.h │ ├── ImGuiFullscreen.cpp │ ├── ImGuiFullscreen.h │ ├── ImGuiManager.cpp │ ├── ImGuiManager.h │ ├── ImGuiOverlays.cpp │ └── ImGuiOverlays.h ├── Input │ ├── DInputSource.cpp │ ├── DInputSource.h │ ├── InputManager.cpp │ ├── InputManager.h │ ├── InputSource.cpp │ ├── InputSource.h │ ├── SDLInputSource.cpp │ ├── SDLInputSource.h │ ├── XInputSource.cpp │ └── XInputSource.h ├── Interpreter.cpp ├── IopBios.cpp ├── IopBios.h ├── IopCounters.cpp ├── IopCounters.h ├── IopDma.cpp ├── IopDma.h ├── IopGte.cpp ├── IopGte.h ├── IopHw.cpp ├── IopHw.h ├── IopIrq.cpp ├── IopMem.cpp ├── IopMem.h ├── IopModuleNames.cpp ├── LayeredSettingsInterface.cpp ├── LayeredSettingsInterface.h ├── Linux │ └── LnxFlatFileReader.cpp ├── LogSink.cpp ├── LogSink.h ├── MMI.cpp ├── MTGS.cpp ├── MTGS.h ├── MTVU.cpp ├── MTVU.h ├── Mdec.cpp ├── Mdec.h ├── Memory.cpp ├── Memory.h ├── MemoryCardFile.cpp ├── MemoryCardFile.h ├── MemoryCardFolder.cpp ├── MemoryCardFolder.h ├── MemoryCardProtocol.cpp ├── MemoryCardProtocol.h ├── MemoryTypes.h ├── MultipartFileReader.cpp ├── MultitapProtocol.cpp ├── MultitapProtocol.h ├── PAD │ └── Host │ │ ├── Global.h │ │ ├── KeyStatus.cpp │ │ ├── KeyStatus.h │ │ ├── PAD.cpp │ │ ├── PAD.h │ │ ├── StateManagement.cpp │ │ └── StateManagement.h ├── PCSX2Base.h ├── PINE.cpp ├── PINE.h ├── Patch.cpp ├── Patch.h ├── Pcsx2Config.cpp ├── PerformanceMetrics.cpp ├── PerformanceMetrics.h ├── PrecompiledHeader.cpp ├── PrecompiledHeader.h ├── R3000A.cpp ├── R3000A.h ├── R3000AInterpreter.cpp ├── R3000AOpcodeTables.cpp ├── R5900.cpp ├── R5900.h ├── R5900OpcodeImpl.cpp ├── R5900OpcodeTables.cpp ├── R5900OpcodeTables.h ├── RDebug │ ├── deci2.cpp │ ├── deci2.h │ ├── deci2.txt │ ├── deci2_dbgp.cpp │ ├── deci2_dbgp.h │ ├── deci2_dcmp.cpp │ ├── deci2_dcmp.h │ ├── deci2_drfp.cpp │ ├── deci2_drfp.h │ ├── deci2_iloadp.cpp │ ├── deci2_iloadp.h │ ├── deci2_netmp.cpp │ ├── deci2_netmp.h │ ├── deci2_ttyp.cpp │ ├── deci2_ttyp.h │ └── iloadp.txt ├── Recording │ ├── InputRecording.cpp │ ├── InputRecording.h │ ├── InputRecordingControls.cpp │ ├── InputRecordingControls.h │ ├── InputRecordingFile.cpp │ ├── InputRecordingFile.h │ ├── PadData.cpp │ ├── PadData.h │ └── Utilities │ │ ├── InputRecordingLogger.cpp │ │ └── InputRecordingLogger.h ├── Reference │ └── PS2-MemoryCardFileSystem.htm ├── Resources │ ├── Info.plist.in │ └── PCSX2.icns ├── SPR.cpp ├── SPR.h ├── SPU2 │ ├── ADSR.cpp │ ├── Debug.cpp │ ├── Debug.h │ ├── Dma.cpp │ ├── Dma.h │ ├── DplIIdecoder.cpp │ ├── Global.h │ ├── Mixer.cpp │ ├── Mixer.h │ ├── ReadInput.cpp │ ├── RegTable.cpp │ ├── Reverb.cpp │ ├── SndOut.cpp │ ├── SndOut.h │ ├── SndOut_Cubeb.cpp │ ├── SndOut_XAudio2.cpp │ ├── Wavedump_wav.cpp │ ├── defs.h │ ├── interpolate_table.h │ ├── regs.h │ ├── spdif.h │ ├── spu2.cpp │ ├── spu2.h │ ├── spu2freeze.cpp │ └── spu2sys.cpp ├── SaveState.cpp ├── SaveState.h ├── ShaderCacheVersion.h ├── ShiftJisToUnicode.cpp ├── Sif.cpp ├── Sif.h ├── Sif0.cpp ├── Sif1.cpp ├── Sifcmd.h ├── SingleRegisterTypes.h ├── Sio.cpp ├── Sio.h ├── SioTypes.h ├── SourceLog.cpp ├── StateWrapper.cpp ├── StateWrapper.h ├── SysForwardDefs.h ├── System.cpp ├── System.h ├── USB │ ├── USB.cpp │ ├── USB.h │ ├── deviceproxy.cpp │ ├── deviceproxy.h │ ├── qemu-usb │ │ ├── USBinternal.h │ │ ├── bus.cpp │ │ ├── core.cpp │ │ ├── desc.cpp │ │ ├── desc.h │ │ ├── hid.cpp │ │ ├── hid.h │ │ ├── input-keymap-qcode-to-qnum.cpp │ │ ├── input-keymap.h │ │ ├── queue.h │ │ ├── qusb.h │ │ └── usb-ohci.cpp │ ├── shared │ │ ├── ringbuffer.cpp │ │ └── ringbuffer.h │ ├── usb-eyetoy │ │ ├── cam-linux.cpp │ │ ├── cam-linux.h │ │ ├── cam-noop.cpp │ │ ├── cam-windows.cpp │ │ ├── cam-windows.h │ │ ├── jo_mpeg.cpp │ │ ├── jo_mpeg.h │ │ ├── ov519.h │ │ ├── usb-eyetoy-webcam.cpp │ │ ├── usb-eyetoy-webcam.h │ │ └── videodev.h │ ├── usb-hid │ │ ├── usb-hid.cpp │ │ └── usb-hid.h │ ├── usb-lightgun │ │ ├── guncon2.cpp │ │ └── guncon2.h │ ├── usb-mic │ │ ├── audio.h │ │ ├── audiodev-cubeb.cpp │ │ ├── audiodev-cubeb.h │ │ ├── audiodev-noop.h │ │ ├── audiodev.h │ │ ├── usb-headset.cpp │ │ ├── usb-headset.h │ │ ├── usb-mic-logitech.cpp │ │ ├── usb-mic-singstar.cpp │ │ └── usb-mic-singstar.h │ ├── usb-msd │ │ ├── usb-msd.cpp │ │ └── usb-msd.h │ ├── usb-pad │ │ ├── lg │ │ │ ├── lg_ff.cpp │ │ │ └── lg_ff.h │ │ ├── usb-pad-ff.cpp │ │ ├── usb-pad-sdl-ff.cpp │ │ ├── usb-pad-sdl-ff.h │ │ ├── usb-pad.cpp │ │ ├── usb-pad.h │ │ ├── usb-seamic.cpp │ │ ├── usb-turntable.cpp │ │ └── usb-turntable.h │ └── usb-printer │ │ ├── usb-printer.cpp │ │ └── usb-printer.h ├── VMManager.cpp ├── VMManager.h ├── VU.h ├── VU0.cpp ├── VU0micro.cpp ├── VU0microInterp.cpp ├── VU1micro.cpp ├── VU1microInterp.cpp ├── VUflags.cpp ├── VUflags.h ├── VUmicro.cpp ├── VUmicro.h ├── VUmicroMem.cpp ├── VUops.cpp ├── VUops.h ├── Vif.cpp ├── Vif.h ├── Vif0_Dma.cpp ├── Vif1_Dma.cpp ├── Vif1_MFIFO.cpp ├── Vif_Codes.cpp ├── Vif_Dma.h ├── Vif_Transfer.cpp ├── Vif_Unpack.cpp ├── Vif_Unpack.h ├── VirtualMemory.cpp ├── VirtualMemory.h ├── packages.config ├── pcsx2.vcxproj ├── pcsx2.vcxproj.filters ├── ps2 │ ├── BiosTools.cpp │ ├── BiosTools.h │ ├── HwInternal.h │ ├── Iop │ │ ├── IopHwRead.cpp │ │ ├── IopHwWrite.cpp │ │ ├── IopHw_Internal.h │ │ └── PsxBios.cpp │ ├── eeHwTraceLog.inl │ ├── pgif.cpp │ └── pgif.h ├── sif2.cpp ├── vtlb.cpp ├── vtlb.h ├── windows │ ├── AppIcon.ico │ ├── FlatFileReaderWindows.cpp │ ├── Optimus.cpp │ ├── PCSX2.manifest │ └── PCSX2.rc └── x86 │ ├── BaseblockEx.cpp │ ├── BaseblockEx.h │ ├── R5900_Profiler.h │ ├── iCOP0.cpp │ ├── iCOP0.h │ ├── iCore.cpp │ ├── iCore.h │ ├── iFPU.cpp │ ├── iFPU.h │ ├── iFPUd.cpp │ ├── iMMI.cpp │ ├── iMMI.h │ ├── iR3000A.cpp │ ├── iR3000A.h │ ├── iR3000Atables.cpp │ ├── iR5900.h │ ├── iR5900Analysis.cpp │ ├── iR5900Analysis.h │ ├── iR5900Arit.h │ ├── iR5900AritImm.h │ ├── iR5900Branch.h │ ├── iR5900Jump.h │ ├── iR5900LoadStore.h │ ├── iR5900Misc.cpp │ ├── iR5900Move.h │ ├── iR5900MultDiv.h │ ├── iR5900Shift.h │ ├── ir5900tables.cpp │ ├── ix86-32 │ ├── iCore-32.cpp │ ├── iR5900-32.cpp │ ├── iR5900Arit.cpp │ ├── iR5900AritImm.cpp │ ├── iR5900Branch.cpp │ ├── iR5900Jump.cpp │ ├── iR5900LoadStore.cpp │ ├── iR5900Move.cpp │ ├── iR5900MultDiv.cpp │ ├── iR5900Shift.cpp │ ├── iR5900Templates.cpp │ └── recVTLB.cpp │ ├── microVU.cpp │ ├── microVU.h │ ├── microVU_Alloc.inl │ ├── microVU_Analyze.inl │ ├── microVU_Branch.inl │ ├── microVU_Clamp.inl │ ├── microVU_Compile.inl │ ├── microVU_Execute.inl │ ├── microVU_Flags.inl │ ├── microVU_IR.h │ ├── microVU_Log.inl │ ├── microVU_Lower.inl │ ├── microVU_Macro.inl │ ├── microVU_Misc.h │ ├── microVU_Misc.inl │ ├── microVU_Profiler.h │ ├── microVU_Tables.inl │ ├── microVU_Upper.inl │ ├── newVif.h │ ├── newVif_Dynarec.cpp │ ├── newVif_HashBucket.h │ ├── newVif_Unpack.cpp │ ├── newVif_UnpackSSE.cpp │ └── newVif_UnpackSSE.h ├── tests ├── ctest │ ├── CMakeLists.txt │ ├── common │ │ ├── CMakeLists.txt │ │ ├── byteswap_tests.cpp │ │ ├── path_tests.cpp │ │ ├── string_util_tests.cpp │ │ └── x86emitter │ │ │ ├── codegen_tests.cpp │ │ │ ├── codegen_tests.h │ │ │ └── codegen_tests_main.cpp │ ├── core │ │ ├── CMakeLists.txt │ │ ├── GS │ │ │ └── swizzle_test_main.cpp │ │ └── StubHost.cpp │ └── gtest │ │ └── CMakeLists.txt └── run_test.pl ├── tools ├── generate_update_fa_glyph_ranges.py ├── merge_ws_ni_patches.py └── texture_dump_alpha_scaler.py └── updater ├── CMakeLists.txt ├── SZErrors.h ├── Updater.cpp ├── Updater.h ├── UpdaterExtractor.h ├── Windows ├── WindowsUpdater.cpp ├── resource.h ├── updater.ico ├── updater.manifest └── updater.rc ├── updater.vcxproj └── updater.vcxproj.filters /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/.clang-format -------------------------------------------------------------------------------- /.codacy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/.codacy.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [PCSX2] 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/controller-db/.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | -------------------------------------------------------------------------------- /.github/workflows/scripts/releases/announce-release/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.md 3 | -------------------------------------------------------------------------------- /.github/workflows/scripts/releases/generate-release-notes/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | *.md 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/.gitmodules -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /3rdparty/3rdparty.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/3rdparty.props -------------------------------------------------------------------------------- /3rdparty/GL/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/GL/khrplatform.h -------------------------------------------------------------------------------- /3rdparty/cpuinfo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cpuinfo/.gitignore -------------------------------------------------------------------------------- /3rdparty/cpuinfo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cpuinfo/LICENSE -------------------------------------------------------------------------------- /3rdparty/cpuinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cpuinfo/README.md -------------------------------------------------------------------------------- /3rdparty/cpuinfo/src/api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cpuinfo/src/api.c -------------------------------------------------------------------------------- /3rdparty/cpuinfo/src/arm/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cpuinfo/src/arm/api.h -------------------------------------------------------------------------------- /3rdparty/cpuinfo/src/arm/tlb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cpuinfo/src/arm/tlb.c -------------------------------------------------------------------------------- /3rdparty/cpuinfo/src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cpuinfo/src/cache.c -------------------------------------------------------------------------------- /3rdparty/cpuinfo/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cpuinfo/src/init.c -------------------------------------------------------------------------------- /3rdparty/cpuinfo/src/x86/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cpuinfo/src/x86/api.h -------------------------------------------------------------------------------- /3rdparty/cpuinfo/src/x86/isa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cpuinfo/src/x86/isa.c -------------------------------------------------------------------------------- /3rdparty/cubeb/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cubeb/AUTHORS -------------------------------------------------------------------------------- /3rdparty/cubeb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cubeb/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/cubeb/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cubeb/Config.cmake.in -------------------------------------------------------------------------------- /3rdparty/cubeb/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cubeb/INSTALL.md -------------------------------------------------------------------------------- /3rdparty/cubeb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cubeb/LICENSE -------------------------------------------------------------------------------- /3rdparty/cubeb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cubeb/README.md -------------------------------------------------------------------------------- /3rdparty/cubeb/cubeb.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cubeb/cubeb.supp -------------------------------------------------------------------------------- /3rdparty/cubeb/cubeb.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cubeb/cubeb.vcxproj -------------------------------------------------------------------------------- /3rdparty/cubeb/src/cubeb-jni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cubeb/src/cubeb-jni.h -------------------------------------------------------------------------------- /3rdparty/cubeb/src/cubeb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cubeb/src/cubeb.c -------------------------------------------------------------------------------- /3rdparty/cubeb/src/cubeb_kai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cubeb/src/cubeb_kai.c -------------------------------------------------------------------------------- /3rdparty/cubeb/src/cubeb_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cubeb/src/cubeb_log.h -------------------------------------------------------------------------------- /3rdparty/cubeb/src/cubeb_oss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cubeb/src/cubeb_oss.c -------------------------------------------------------------------------------- /3rdparty/cubeb/src/cubeb_sun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/cubeb/src/cubeb_sun.c -------------------------------------------------------------------------------- /3rdparty/d3d12memalloc/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # 1.0.0 (2019-09-02) 2 | 3 | First published version. 4 | -------------------------------------------------------------------------------- /3rdparty/discord-rpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/discord-rpc/LICENSE -------------------------------------------------------------------------------- /3rdparty/ffmpeg/COPYING.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/ffmpeg/COPYING.GPLv2 -------------------------------------------------------------------------------- /3rdparty/ffmpeg/COPYING.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/ffmpeg/COPYING.GPLv3 -------------------------------------------------------------------------------- /3rdparty/ffmpeg/COPYING.LGPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/ffmpeg/COPYING.LGPLv3 -------------------------------------------------------------------------------- /3rdparty/ffmpeg/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/ffmpeg/LICENSE.md -------------------------------------------------------------------------------- /3rdparty/fmt/fmt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/fmt/fmt.vcxproj -------------------------------------------------------------------------------- /3rdparty/glad/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/glad/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/glad/glad.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/glad/glad.vcxproj -------------------------------------------------------------------------------- /3rdparty/glad/include/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/glad/include/glad.h -------------------------------------------------------------------------------- /3rdparty/glad/src/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/glad/src/glad.c -------------------------------------------------------------------------------- /3rdparty/glad/src/glad_egl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/glad/src/glad_egl.c -------------------------------------------------------------------------------- /3rdparty/glad/src/glad_wgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/glad/src/glad_wgl.c -------------------------------------------------------------------------------- /3rdparty/imgui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/imgui/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/imgui/imgui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/imgui/imgui.vcxproj -------------------------------------------------------------------------------- /3rdparty/imgui/include/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/imgui/include/imgui.h -------------------------------------------------------------------------------- /3rdparty/imgui/src/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/imgui/src/imgui.cpp -------------------------------------------------------------------------------- /3rdparty/include/Packet32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/Packet32.h -------------------------------------------------------------------------------- /3rdparty/include/gsl/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/gsl/algorithm -------------------------------------------------------------------------------- /3rdparty/include/gsl/assert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/gsl/assert -------------------------------------------------------------------------------- /3rdparty/include/gsl/byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/gsl/byte -------------------------------------------------------------------------------- /3rdparty/include/gsl/gsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/gsl/gsl -------------------------------------------------------------------------------- /3rdparty/include/gsl/gsl_byte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/gsl/gsl_byte -------------------------------------------------------------------------------- /3rdparty/include/gsl/gsl_util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/gsl/gsl_util -------------------------------------------------------------------------------- /3rdparty/include/gsl/narrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/gsl/narrow -------------------------------------------------------------------------------- /3rdparty/include/gsl/pointers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/gsl/pointers -------------------------------------------------------------------------------- /3rdparty/include/gsl/span: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/gsl/span -------------------------------------------------------------------------------- /3rdparty/include/gsl/span_ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/gsl/span_ext -------------------------------------------------------------------------------- /3rdparty/include/gsl/util: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/gsl/util -------------------------------------------------------------------------------- /3rdparty/include/pcap-bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/pcap-bpf.h -------------------------------------------------------------------------------- /3rdparty/include/pcap-namedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/pcap-namedb.h -------------------------------------------------------------------------------- /3rdparty/include/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/pcap.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/pcap/bpf.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/dlt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/pcap/dlt.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/ipnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/pcap/ipnet.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/namedb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/pcap/namedb.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/nflog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/pcap/nflog.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/pcap/pcap.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/sll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/pcap/sll.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/pcap/socket.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/pcap/usb.h -------------------------------------------------------------------------------- /3rdparty/include/pcap/vlan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/pcap/vlan.h -------------------------------------------------------------------------------- /3rdparty/include/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/include/xxhash.h -------------------------------------------------------------------------------- /3rdparty/jpgd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/jpgd/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/jpgd/jpgd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/jpgd/jpgd.cpp -------------------------------------------------------------------------------- /3rdparty/jpgd/jpgd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/jpgd/jpgd.h -------------------------------------------------------------------------------- /3rdparty/jpgd/jpgd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/jpgd/jpgd.vcxproj -------------------------------------------------------------------------------- /3rdparty/jpgd/jpgd_idct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/jpgd/jpgd_idct.h -------------------------------------------------------------------------------- /3rdparty/jpgd/jpge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/jpgd/jpge.cpp -------------------------------------------------------------------------------- /3rdparty/jpgd/jpge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/jpgd/jpge.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/README -------------------------------------------------------------------------------- /3rdparty/libjpeg/change.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/change.log -------------------------------------------------------------------------------- /3rdparty/libjpeg/filelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/filelist.txt -------------------------------------------------------------------------------- /3rdparty/libjpeg/jaricom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jaricom.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jcapimin.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jcapistd.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jcarith.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jccoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jccoefct.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jccolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jccolor.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcdctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jcdctmgr.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jchuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jchuff.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jcinit.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jcmainct.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jcmarker.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jcmaster.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcomapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jcomapi.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jconfig.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jcparam.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcprepct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jcprepct.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jcsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jcsample.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jctrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jctrans.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdapimin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdapimin.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdapistd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdapistd.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdarith.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdarith.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdatadst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdatadst.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdatasrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdatasrc.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdcoefct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdcoefct.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdcolor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdcolor.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdct.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jddctmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jddctmgr.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdhuff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdhuff.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdinput.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdmainct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdmainct.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdmarker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdmarker.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdmaster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdmaster.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdmerge.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdpostct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdpostct.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdsample.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdsample.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jdtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jdtrans.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jerror.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jerror.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jfdctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jfdctflt.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jfdctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jfdctfst.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jfdctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jfdctint.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jidctflt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jidctflt.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jidctfst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jidctfst.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jidctint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jidctint.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jinclude.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jmemansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jmemansi.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jmemmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jmemmac.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jmemmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jmemmgr.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jmemname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jmemname.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jmemnobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jmemnobs.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jmemsys.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jmorecfg.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jpegint.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jpeglib.h -------------------------------------------------------------------------------- /3rdparty/libjpeg/jquant1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jquant1.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jquant2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jquant2.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jutils.c -------------------------------------------------------------------------------- /3rdparty/libjpeg/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libjpeg/jversion.h -------------------------------------------------------------------------------- /3rdparty/libpng/ANNOUNCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/ANNOUNCE -------------------------------------------------------------------------------- /3rdparty/libpng/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/CHANGES -------------------------------------------------------------------------------- /3rdparty/libpng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/libpng/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/INSTALL -------------------------------------------------------------------------------- /3rdparty/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/LICENSE -------------------------------------------------------------------------------- /3rdparty/libpng/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/README -------------------------------------------------------------------------------- /3rdparty/libpng/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/TODO -------------------------------------------------------------------------------- /3rdparty/libpng/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/configure -------------------------------------------------------------------------------- /3rdparty/libpng/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/example.c -------------------------------------------------------------------------------- /3rdparty/libpng/libpng.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/libpng.3 -------------------------------------------------------------------------------- /3rdparty/libpng/libpng.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/libpng.pc.in -------------------------------------------------------------------------------- /3rdparty/libpng/libpngpf.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/libpngpf.3 -------------------------------------------------------------------------------- /3rdparty/libpng/png.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/png.5 -------------------------------------------------------------------------------- /3rdparty/libpng/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/png.c -------------------------------------------------------------------------------- /3rdparty/libpng/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/png.h -------------------------------------------------------------------------------- /3rdparty/libpng/pngbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngbar.jpg -------------------------------------------------------------------------------- /3rdparty/libpng/pngbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngbar.png -------------------------------------------------------------------------------- /3rdparty/libpng/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngconf.h -------------------------------------------------------------------------------- /3rdparty/libpng/pngdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngdebug.h -------------------------------------------------------------------------------- /3rdparty/libpng/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngerror.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngget.c -------------------------------------------------------------------------------- /3rdparty/libpng/pnginfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pnginfo.h -------------------------------------------------------------------------------- /3rdparty/libpng/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pnglibconf.h -------------------------------------------------------------------------------- /3rdparty/libpng/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngmem.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngnow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngnow.png -------------------------------------------------------------------------------- /3rdparty/libpng/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngpread.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngpriv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngpriv.h -------------------------------------------------------------------------------- /3rdparty/libpng/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngread.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngrio.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngrtran.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngrutil.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngset.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngstruct.h -------------------------------------------------------------------------------- /3rdparty/libpng/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngtest.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngtest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngtest.png -------------------------------------------------------------------------------- /3rdparty/libpng/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngtrans.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngwio.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngwrite.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngwtran.c -------------------------------------------------------------------------------- /3rdparty/libpng/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/pngwutil.c -------------------------------------------------------------------------------- /3rdparty/libpng/scripts/def.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/scripts/def.c -------------------------------------------------------------------------------- /3rdparty/libpng/scripts/sym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/scripts/sym.c -------------------------------------------------------------------------------- /3rdparty/libpng/scripts/vers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libpng/scripts/vers.c -------------------------------------------------------------------------------- /3rdparty/libzip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libzip/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/libzip/libzip.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libzip/libzip.vcxproj -------------------------------------------------------------------------------- /3rdparty/libzip/zipconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/libzip/zipconf.h -------------------------------------------------------------------------------- /3rdparty/lzma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/lzma/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/LICENSE.txt -------------------------------------------------------------------------------- /3rdparty/lzma/include/7z.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/7z.h -------------------------------------------------------------------------------- /3rdparty/lzma/include/7zBuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/7zBuf.h -------------------------------------------------------------------------------- /3rdparty/lzma/include/7zCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/7zCrc.h -------------------------------------------------------------------------------- /3rdparty/lzma/include/7zFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/7zFile.h -------------------------------------------------------------------------------- /3rdparty/lzma/include/Alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/Alloc.h -------------------------------------------------------------------------------- /3rdparty/lzma/include/Bcj2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/Bcj2.h -------------------------------------------------------------------------------- /3rdparty/lzma/include/Bra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/Bra.h -------------------------------------------------------------------------------- /3rdparty/lzma/include/Delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/Delta.h -------------------------------------------------------------------------------- /3rdparty/lzma/include/LzFind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/LzFind.h -------------------------------------------------------------------------------- /3rdparty/lzma/include/LzHash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/LzHash.h -------------------------------------------------------------------------------- /3rdparty/lzma/include/Lzma86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/Lzma86.h -------------------------------------------------------------------------------- /3rdparty/lzma/include/Ppmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/Ppmd.h -------------------------------------------------------------------------------- /3rdparty/lzma/include/Ppmd7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/Ppmd7.h -------------------------------------------------------------------------------- /3rdparty/lzma/include/Sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/Sha256.h -------------------------------------------------------------------------------- /3rdparty/lzma/include/Xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/Xz.h -------------------------------------------------------------------------------- /3rdparty/lzma/include/XzEnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/include/XzEnc.h -------------------------------------------------------------------------------- /3rdparty/lzma/lzma.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/lzma.vcxproj -------------------------------------------------------------------------------- /3rdparty/lzma/src/7zAlloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/7zAlloc.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/7zArcIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/7zArcIn.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/7zBuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/7zBuf.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/7zBuf2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/7zBuf2.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/7zCrc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/7zCrc.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/7zCrcOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/7zCrcOpt.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/7zDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/7zDec.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/7zFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/7zFile.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/7zStream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/7zStream.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Alloc.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Bcj2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Bcj2.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Bcj2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Bcj2Enc.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Bra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Bra.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Bra86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Bra86.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/BraIA64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/BraIA64.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/CpuArch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/CpuArch.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Delta.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/LzFind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/LzFind.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/LzFindOpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/LzFindOpt.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Lzma2Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Lzma2Dec.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Lzma2DecMt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Lzma2DecMt.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Lzma2Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Lzma2Enc.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Lzma86Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Lzma86Dec.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Lzma86Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Lzma86Enc.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/LzmaDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/LzmaDec.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/LzmaEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/LzmaEnc.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/LzmaLib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/LzmaLib.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Ppmd7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Ppmd7.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Ppmd7Dec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Ppmd7Dec.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Ppmd7Enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Ppmd7Enc.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Sha256.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Sha256Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Sha256Opt.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/Xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/Xz.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/XzCrc64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/XzCrc64.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/XzCrc64Opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/XzCrc64Opt.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/XzDec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/XzDec.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/XzEnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/XzEnc.c -------------------------------------------------------------------------------- /3rdparty/lzma/src/XzIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/lzma/src/XzIn.c -------------------------------------------------------------------------------- /3rdparty/qt/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !.gitignore 3 | !README.md 4 | -------------------------------------------------------------------------------- /3rdparty/qt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/qt/README.md -------------------------------------------------------------------------------- /3rdparty/rainterface/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | -------------------------------------------------------------------------------- /3rdparty/rainterface/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/rainterface/LICENSE -------------------------------------------------------------------------------- /3rdparty/rainterface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/rainterface/README.md -------------------------------------------------------------------------------- /3rdparty/rapidjson/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/rapidjson/license.txt -------------------------------------------------------------------------------- /3rdparty/sdl2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/sdl2/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/sdl2/SDL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/sdl2/SDL.vcxproj -------------------------------------------------------------------------------- /3rdparty/simpleini/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/simpleini/LICENCE.txt -------------------------------------------------------------------------------- /3rdparty/svn_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/svn_readme.txt -------------------------------------------------------------------------------- /3rdparty/xbyak/xbyak/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/xbyak/xbyak/COPYRIGHT -------------------------------------------------------------------------------- /3rdparty/xbyak/xbyak/xbyak.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/xbyak/xbyak/xbyak.h -------------------------------------------------------------------------------- /3rdparty/xz/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/xz/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/xz/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/xz/config.h -------------------------------------------------------------------------------- /3rdparty/xz/liblzma.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/xz/liblzma.vcxproj -------------------------------------------------------------------------------- /3rdparty/zlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/zlib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/ChangeLog -------------------------------------------------------------------------------- /3rdparty/zlib/FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/FAQ -------------------------------------------------------------------------------- /3rdparty/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/README -------------------------------------------------------------------------------- /3rdparty/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/adler32.c -------------------------------------------------------------------------------- /3rdparty/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/compress.c -------------------------------------------------------------------------------- /3rdparty/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/crc32.c -------------------------------------------------------------------------------- /3rdparty/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/crc32.h -------------------------------------------------------------------------------- /3rdparty/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/deflate.c -------------------------------------------------------------------------------- /3rdparty/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/deflate.h -------------------------------------------------------------------------------- /3rdparty/zlib/examples/gun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/examples/gun.c -------------------------------------------------------------------------------- /3rdparty/zlib/examples/gzlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/examples/gzlog.c -------------------------------------------------------------------------------- /3rdparty/zlib/examples/gzlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/examples/gzlog.h -------------------------------------------------------------------------------- /3rdparty/zlib/examples/zpipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/examples/zpipe.c -------------------------------------------------------------------------------- /3rdparty/zlib/examples/zran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/examples/zran.c -------------------------------------------------------------------------------- /3rdparty/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/gzclose.c -------------------------------------------------------------------------------- /3rdparty/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/gzguts.h -------------------------------------------------------------------------------- /3rdparty/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/gzlib.c -------------------------------------------------------------------------------- /3rdparty/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/gzread.c -------------------------------------------------------------------------------- /3rdparty/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/gzwrite.c -------------------------------------------------------------------------------- /3rdparty/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/infback.c -------------------------------------------------------------------------------- /3rdparty/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/inffast.c -------------------------------------------------------------------------------- /3rdparty/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/inffast.h -------------------------------------------------------------------------------- /3rdparty/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/inffixed.h -------------------------------------------------------------------------------- /3rdparty/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/inflate.c -------------------------------------------------------------------------------- /3rdparty/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/inflate.h -------------------------------------------------------------------------------- /3rdparty/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/inftrees.c -------------------------------------------------------------------------------- /3rdparty/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/inftrees.h -------------------------------------------------------------------------------- /3rdparty/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/trees.c -------------------------------------------------------------------------------- /3rdparty/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/trees.h -------------------------------------------------------------------------------- /3rdparty/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/uncompr.c -------------------------------------------------------------------------------- /3rdparty/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/zconf.h -------------------------------------------------------------------------------- /3rdparty/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/zlib.h -------------------------------------------------------------------------------- /3rdparty/zlib/zlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/zlib.vcxproj -------------------------------------------------------------------------------- /3rdparty/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/zutil.c -------------------------------------------------------------------------------- /3rdparty/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zlib/zutil.h -------------------------------------------------------------------------------- /3rdparty/zstd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zstd/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/zstd/zstd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zstd/zstd.vcxproj -------------------------------------------------------------------------------- /3rdparty/zydis/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zydis/CMakeLists.txt -------------------------------------------------------------------------------- /3rdparty/zydis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zydis/LICENSE -------------------------------------------------------------------------------- /3rdparty/zydis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zydis/README.md -------------------------------------------------------------------------------- /3rdparty/zydis/src/Decoder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zydis/src/Decoder.c -------------------------------------------------------------------------------- /3rdparty/zydis/src/Formatter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zydis/src/Formatter.c -------------------------------------------------------------------------------- /3rdparty/zydis/src/MetaInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zydis/src/MetaInfo.c -------------------------------------------------------------------------------- /3rdparty/zydis/src/Mnemonic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zydis/src/Mnemonic.c -------------------------------------------------------------------------------- /3rdparty/zydis/src/Register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zydis/src/Register.c -------------------------------------------------------------------------------- /3rdparty/zydis/src/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zydis/src/String.c -------------------------------------------------------------------------------- /3rdparty/zydis/src/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zydis/src/Utils.c -------------------------------------------------------------------------------- /3rdparty/zydis/src/Zydis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zydis/src/Zydis.c -------------------------------------------------------------------------------- /3rdparty/zydis/zydis.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/3rdparty/zydis/zydis.vcxproj -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /COPYING.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/COPYING.GPLv3 -------------------------------------------------------------------------------- /COPYING.LGPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/COPYING.LGPLv3 -------------------------------------------------------------------------------- /PCSX2_qt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/PCSX2_qt.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/README.md -------------------------------------------------------------------------------- /bin/docs/Debugger.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/bin/docs/Debugger.pdf -------------------------------------------------------------------------------- /bin/docs/GPL.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/bin/docs/GPL.html -------------------------------------------------------------------------------- /bin/docs/GameIndex.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/bin/docs/GameIndex.pdf -------------------------------------------------------------------------------- /bin/docs/debugger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/bin/docs/debugger.txt -------------------------------------------------------------------------------- /bin/portable.ini: -------------------------------------------------------------------------------- 1 | RunWizard=0 2 | -------------------------------------------------------------------------------- /bin/resources/GameIndex.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/bin/resources/GameIndex.yaml -------------------------------------------------------------------------------- /bin/resources/icons/star-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/bin/resources/icons/star-0.png -------------------------------------------------------------------------------- /bin/resources/icons/star-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/bin/resources/icons/star-1.png -------------------------------------------------------------------------------- /bin/resources/icons/star-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/bin/resources/icons/star-2.png -------------------------------------------------------------------------------- /bin/resources/icons/star-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/bin/resources/icons/star-3.png -------------------------------------------------------------------------------- /bin/resources/icons/star-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/bin/resources/icons/star-4.png -------------------------------------------------------------------------------- /bin/resources/icons/star-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/bin/resources/icons/star-5.png -------------------------------------------------------------------------------- /cmake/BuildParameters.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/cmake/BuildParameters.cmake -------------------------------------------------------------------------------- /cmake/CheckLib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/cmake/CheckLib.cmake -------------------------------------------------------------------------------- /cmake/FindFFMPEG.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/cmake/FindFFMPEG.cmake -------------------------------------------------------------------------------- /cmake/FindLibbacktrace.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/cmake/FindLibbacktrace.cmake -------------------------------------------------------------------------------- /cmake/FindLibc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/cmake/FindLibc.cmake -------------------------------------------------------------------------------- /cmake/FindPCAP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/cmake/FindPCAP.cmake -------------------------------------------------------------------------------- /cmake/FindVtune.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/cmake/FindVtune.cmake -------------------------------------------------------------------------------- /cmake/Pcsx2Utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/cmake/Pcsx2Utils.cmake -------------------------------------------------------------------------------- /cmake/SearchForStuff.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/cmake/SearchForStuff.cmake -------------------------------------------------------------------------------- /cmake/TargetArch.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/cmake/TargetArch.cmake -------------------------------------------------------------------------------- /common/Align.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Align.h -------------------------------------------------------------------------------- /common/AlignedMalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/AlignedMalloc.cpp -------------------------------------------------------------------------------- /common/AlignedMalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/AlignedMalloc.h -------------------------------------------------------------------------------- /common/Assertions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Assertions.cpp -------------------------------------------------------------------------------- /common/Assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Assertions.h -------------------------------------------------------------------------------- /common/BitCast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/BitCast.h -------------------------------------------------------------------------------- /common/ByteSwap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/ByteSwap.h -------------------------------------------------------------------------------- /common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/CMakeLists.txt -------------------------------------------------------------------------------- /common/CocoaTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/CocoaTools.h -------------------------------------------------------------------------------- /common/CocoaTools.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/CocoaTools.mm -------------------------------------------------------------------------------- /common/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Console.cpp -------------------------------------------------------------------------------- /common/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Console.h -------------------------------------------------------------------------------- /common/CrashHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/CrashHandler.cpp -------------------------------------------------------------------------------- /common/CrashHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/CrashHandler.h -------------------------------------------------------------------------------- /common/Darwin/DarwinMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Darwin/DarwinMisc.cpp -------------------------------------------------------------------------------- /common/Darwin/DarwinMisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Darwin/DarwinMisc.h -------------------------------------------------------------------------------- /common/DynamicLibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/DynamicLibrary.cpp -------------------------------------------------------------------------------- /common/DynamicLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/DynamicLibrary.h -------------------------------------------------------------------------------- /common/Easing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Easing.h -------------------------------------------------------------------------------- /common/EnumOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/EnumOps.h -------------------------------------------------------------------------------- /common/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Error.cpp -------------------------------------------------------------------------------- /common/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Error.h -------------------------------------------------------------------------------- /common/FastJmp.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/FastJmp.asm -------------------------------------------------------------------------------- /common/FastJmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/FastJmp.cpp -------------------------------------------------------------------------------- /common/FastJmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/FastJmp.h -------------------------------------------------------------------------------- /common/FileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/FileSystem.cpp -------------------------------------------------------------------------------- /common/FileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/FileSystem.h -------------------------------------------------------------------------------- /common/General.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/General.cpp -------------------------------------------------------------------------------- /common/General.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/General.h -------------------------------------------------------------------------------- /common/HTTPDownloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/HTTPDownloader.cpp -------------------------------------------------------------------------------- /common/HTTPDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/HTTPDownloader.h -------------------------------------------------------------------------------- /common/HTTPDownloaderCurl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/HTTPDownloaderCurl.cpp -------------------------------------------------------------------------------- /common/HTTPDownloaderCurl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/HTTPDownloaderCurl.h -------------------------------------------------------------------------------- /common/HTTPDownloaderWinHTTP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/HTTPDownloaderWinHTTP.h -------------------------------------------------------------------------------- /common/HashCombine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/HashCombine.h -------------------------------------------------------------------------------- /common/HeapArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/HeapArray.h -------------------------------------------------------------------------------- /common/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Image.cpp -------------------------------------------------------------------------------- /common/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Image.h -------------------------------------------------------------------------------- /common/LRUCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/LRUCache.h -------------------------------------------------------------------------------- /common/Linux/LnxHostSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Linux/LnxHostSys.cpp -------------------------------------------------------------------------------- /common/Linux/LnxMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Linux/LnxMisc.cpp -------------------------------------------------------------------------------- /common/Linux/LnxThreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Linux/LnxThreads.cpp -------------------------------------------------------------------------------- /common/MD5Digest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/MD5Digest.cpp -------------------------------------------------------------------------------- /common/MD5Digest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/MD5Digest.h -------------------------------------------------------------------------------- /common/MRCHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/MRCHelpers.h -------------------------------------------------------------------------------- /common/MathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/MathUtils.h -------------------------------------------------------------------------------- /common/Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Misc.cpp -------------------------------------------------------------------------------- /common/Path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Path.h -------------------------------------------------------------------------------- /common/Pcsx2Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Pcsx2Defs.h -------------------------------------------------------------------------------- /common/Pcsx2Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Pcsx2Types.h -------------------------------------------------------------------------------- /common/Perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Perf.cpp -------------------------------------------------------------------------------- /common/Perf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Perf.h -------------------------------------------------------------------------------- /common/PrecompiledHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/PrecompiledHeader.cpp -------------------------------------------------------------------------------- /common/PrecompiledHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/PrecompiledHeader.h -------------------------------------------------------------------------------- /common/ProgressCallback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/ProgressCallback.cpp -------------------------------------------------------------------------------- /common/ProgressCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/ProgressCallback.h -------------------------------------------------------------------------------- /common/ReadbackSpinManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/ReadbackSpinManager.cpp -------------------------------------------------------------------------------- /common/ReadbackSpinManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/ReadbackSpinManager.h -------------------------------------------------------------------------------- /common/RedtapeWilCom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/RedtapeWilCom.h -------------------------------------------------------------------------------- /common/RedtapeWindows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/RedtapeWindows.h -------------------------------------------------------------------------------- /common/ScopedGuard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/ScopedGuard.h -------------------------------------------------------------------------------- /common/Semaphore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Semaphore.cpp -------------------------------------------------------------------------------- /common/SettingsInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/SettingsInterface.h -------------------------------------------------------------------------------- /common/SettingsWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/SettingsWrapper.cpp -------------------------------------------------------------------------------- /common/SettingsWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/SettingsWrapper.h -------------------------------------------------------------------------------- /common/StackWalker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/StackWalker.cpp -------------------------------------------------------------------------------- /common/StackWalker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/StackWalker.h -------------------------------------------------------------------------------- /common/StringUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/StringUtil.cpp -------------------------------------------------------------------------------- /common/StringUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/StringUtil.h -------------------------------------------------------------------------------- /common/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/ThreadPool.cpp -------------------------------------------------------------------------------- /common/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/ThreadPool.h -------------------------------------------------------------------------------- /common/Threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Threading.h -------------------------------------------------------------------------------- /common/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Timer.cpp -------------------------------------------------------------------------------- /common/Timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Timer.h -------------------------------------------------------------------------------- /common/TraceLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/TraceLog.h -------------------------------------------------------------------------------- /common/WAVWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/WAVWriter.cpp -------------------------------------------------------------------------------- /common/WAVWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/WAVWriter.h -------------------------------------------------------------------------------- /common/WindowInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/WindowInfo.cpp -------------------------------------------------------------------------------- /common/WindowInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/WindowInfo.h -------------------------------------------------------------------------------- /common/Windows/WinHostSys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Windows/WinHostSys.cpp -------------------------------------------------------------------------------- /common/Windows/WinMisc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Windows/WinMisc.cpp -------------------------------------------------------------------------------- /common/Windows/WinThreads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/Windows/WinThreads.cpp -------------------------------------------------------------------------------- /common/WrappedMemCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/WrappedMemCopy.h -------------------------------------------------------------------------------- /common/ZipHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/ZipHelpers.h -------------------------------------------------------------------------------- /common/boost_spsc_queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/boost_spsc_queue.hpp -------------------------------------------------------------------------------- /common/common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/common.vcxproj -------------------------------------------------------------------------------- /common/common.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/common.vcxproj.filters -------------------------------------------------------------------------------- /common/emitter/avx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/avx.cpp -------------------------------------------------------------------------------- /common/emitter/bmi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/bmi.cpp -------------------------------------------------------------------------------- /common/emitter/cpudetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/cpudetect.cpp -------------------------------------------------------------------------------- /common/emitter/fpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/fpu.cpp -------------------------------------------------------------------------------- /common/emitter/groups.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/groups.cpp -------------------------------------------------------------------------------- /common/emitter/implement/avx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/implement/avx.h -------------------------------------------------------------------------------- /common/emitter/implement/bmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/implement/bmi.h -------------------------------------------------------------------------------- /common/emitter/instructions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/instructions.h -------------------------------------------------------------------------------- /common/emitter/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/internal.h -------------------------------------------------------------------------------- /common/emitter/jmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/jmp.cpp -------------------------------------------------------------------------------- /common/emitter/legacy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/legacy.cpp -------------------------------------------------------------------------------- /common/emitter/legacy_sse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/legacy_sse.cpp -------------------------------------------------------------------------------- /common/emitter/legacy_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/legacy_types.h -------------------------------------------------------------------------------- /common/emitter/movs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/movs.cpp -------------------------------------------------------------------------------- /common/emitter/simd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/simd.cpp -------------------------------------------------------------------------------- /common/emitter/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/tools.h -------------------------------------------------------------------------------- /common/emitter/x86_intrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/x86_intrin.h -------------------------------------------------------------------------------- /common/emitter/x86emitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/x86emitter.cpp -------------------------------------------------------------------------------- /common/emitter/x86emitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/x86emitter.h -------------------------------------------------------------------------------- /common/emitter/x86types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/emitter/x86types.h -------------------------------------------------------------------------------- /common/vsprops/QtCompile.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/vsprops/QtCompile.props -------------------------------------------------------------------------------- /common/vsprops/QtCompile.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/vsprops/QtCompile.xml -------------------------------------------------------------------------------- /common/vsprops/WinSDK.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/vsprops/WinSDK.props -------------------------------------------------------------------------------- /common/vsprops/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/vsprops/common.props -------------------------------------------------------------------------------- /common/vsprops/preBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/vsprops/preBuild.cmd -------------------------------------------------------------------------------- /common/vsprops/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/common/vsprops/readme.txt -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/crowdin.yml -------------------------------------------------------------------------------- /pcsx2-gsrunner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-gsrunner/CMakeLists.txt -------------------------------------------------------------------------------- /pcsx2-gsrunner/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-gsrunner/Main.cpp -------------------------------------------------------------------------------- /pcsx2-qt/AboutDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/AboutDialog.cpp -------------------------------------------------------------------------------- /pcsx2-qt/AboutDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/AboutDialog.h -------------------------------------------------------------------------------- /pcsx2-qt/AboutDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/AboutDialog.ui -------------------------------------------------------------------------------- /pcsx2-qt/AutoUpdaterDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/AutoUpdaterDialog.cpp -------------------------------------------------------------------------------- /pcsx2-qt/AutoUpdaterDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/AutoUpdaterDialog.h -------------------------------------------------------------------------------- /pcsx2-qt/AutoUpdaterDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/AutoUpdaterDialog.ui -------------------------------------------------------------------------------- /pcsx2-qt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/CMakeLists.txt -------------------------------------------------------------------------------- /pcsx2-qt/ColorPickerButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/ColorPickerButton.cpp -------------------------------------------------------------------------------- /pcsx2-qt/ColorPickerButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/ColorPickerButton.h -------------------------------------------------------------------------------- /pcsx2-qt/CoverDownloadDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/CoverDownloadDialog.h -------------------------------------------------------------------------------- /pcsx2-qt/Debugger/CpuWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/Debugger/CpuWidget.h -------------------------------------------------------------------------------- /pcsx2-qt/Debugger/CpuWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/Debugger/CpuWidget.ui -------------------------------------------------------------------------------- /pcsx2-qt/DisplayWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/DisplayWidget.cpp -------------------------------------------------------------------------------- /pcsx2-qt/DisplayWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/DisplayWidget.h -------------------------------------------------------------------------------- /pcsx2-qt/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/MainWindow.cpp -------------------------------------------------------------------------------- /pcsx2-qt/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/MainWindow.h -------------------------------------------------------------------------------- /pcsx2-qt/MainWindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/MainWindow.ui -------------------------------------------------------------------------------- /pcsx2-qt/PrecompiledHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/PrecompiledHeader.cpp -------------------------------------------------------------------------------- /pcsx2-qt/PrecompiledHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/PrecompiledHeader.h -------------------------------------------------------------------------------- /pcsx2-qt/QtHost.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/QtHost.cpp -------------------------------------------------------------------------------- /pcsx2-qt/QtHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/QtHost.h -------------------------------------------------------------------------------- /pcsx2-qt/QtKeyCodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/QtKeyCodes.cpp -------------------------------------------------------------------------------- /pcsx2-qt/QtProgressCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/QtProgressCallback.h -------------------------------------------------------------------------------- /pcsx2-qt/QtUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/QtUtils.cpp -------------------------------------------------------------------------------- /pcsx2-qt/QtUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/QtUtils.h -------------------------------------------------------------------------------- /pcsx2-qt/SettingWidgetBinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/SettingWidgetBinder.h -------------------------------------------------------------------------------- /pcsx2-qt/SetupWizardDialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/SetupWizardDialog.cpp -------------------------------------------------------------------------------- /pcsx2-qt/SetupWizardDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/SetupWizardDialog.h -------------------------------------------------------------------------------- /pcsx2-qt/SetupWizardDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/SetupWizardDialog.ui -------------------------------------------------------------------------------- /pcsx2-qt/Themes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/Themes.cpp -------------------------------------------------------------------------------- /pcsx2-qt/Translations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/Translations.cpp -------------------------------------------------------------------------------- /pcsx2-qt/pcsx2-qt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/pcsx2-qt.vcxproj -------------------------------------------------------------------------------- /pcsx2-qt/resources/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-qt/resources/generate.sh -------------------------------------------------------------------------------- /pcsx2-winrt/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-winrt/App.cpp -------------------------------------------------------------------------------- /pcsx2-winrt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-winrt/README.md -------------------------------------------------------------------------------- /pcsx2-winrt/UWPUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-winrt/UWPUtils.h -------------------------------------------------------------------------------- /pcsx2-winrt/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2-winrt/packages.config -------------------------------------------------------------------------------- /pcsx2/Achievements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Achievements.cpp -------------------------------------------------------------------------------- /pcsx2/Achievements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Achievements.h -------------------------------------------------------------------------------- /pcsx2/AsyncFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/AsyncFileReader.h -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/CDVD.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/CDVD.h -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVD_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/CDVD_internal.h -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVDcommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/CDVDcommon.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVDcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/CDVDcommon.h -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVDdiscReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/CDVDdiscReader.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVDdiscReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/CDVDdiscReader.h -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVDdiscThread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/CDVDdiscThread.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/CDVDisoReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/CDVDisoReader.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/ChdFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/ChdFileReader.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/ChdFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/ChdFileReader.h -------------------------------------------------------------------------------- /pcsx2/CDVD/ChunksCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/ChunksCache.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/ChunksCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/ChunksCache.h -------------------------------------------------------------------------------- /pcsx2/CDVD/CsoFileReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/CsoFileReader.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/CsoFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/CsoFileReader.h -------------------------------------------------------------------------------- /pcsx2/CDVD/Darwin/IOCtlSrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/Darwin/IOCtlSrc.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/GzippedFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/GzippedFileReader.h -------------------------------------------------------------------------------- /pcsx2/CDVD/InputIsoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/InputIsoFile.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/IsoFileFormats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/IsoFileFormats.h -------------------------------------------------------------------------------- /pcsx2/CDVD/IsoReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/IsoReader.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/IsoReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/IsoReader.h -------------------------------------------------------------------------------- /pcsx2/CDVD/OutputIsoFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/OutputIsoFile.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/Ps1CD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/Ps1CD.cpp -------------------------------------------------------------------------------- /pcsx2/CDVD/Ps1CD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/Ps1CD.h -------------------------------------------------------------------------------- /pcsx2/CDVD/zlib_indexed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CDVD/zlib_indexed.h -------------------------------------------------------------------------------- /pcsx2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/CMakeLists.txt -------------------------------------------------------------------------------- /pcsx2/COP0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/COP0.cpp -------------------------------------------------------------------------------- /pcsx2/COP0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/COP0.h -------------------------------------------------------------------------------- /pcsx2/COP2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/COP2.cpp -------------------------------------------------------------------------------- /pcsx2/Cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Cache.cpp -------------------------------------------------------------------------------- /pcsx2/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Cache.h -------------------------------------------------------------------------------- /pcsx2/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Common.h -------------------------------------------------------------------------------- /pcsx2/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Config.h -------------------------------------------------------------------------------- /pcsx2/Counters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Counters.cpp -------------------------------------------------------------------------------- /pcsx2/Counters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Counters.h -------------------------------------------------------------------------------- /pcsx2/DEV9/ATA/ATA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/ATA/ATA.h -------------------------------------------------------------------------------- /pcsx2/DEV9/ATA/ATA_Info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/ATA/ATA_Info.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/ATA/ATA_State.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/ATA/ATA_State.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/ATA/HddCreate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/ATA/HddCreate.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/ATA/HddCreate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/ATA/HddCreate.h -------------------------------------------------------------------------------- /pcsx2/DEV9/AdapterUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/AdapterUtils.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/AdapterUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/AdapterUtils.h -------------------------------------------------------------------------------- /pcsx2/DEV9/DEV9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/DEV9.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/DEV9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/DEV9.h -------------------------------------------------------------------------------- /pcsx2/DEV9/SimpleQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/SimpleQueue.h -------------------------------------------------------------------------------- /pcsx2/DEV9/ThreadSafeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/ThreadSafeMap.h -------------------------------------------------------------------------------- /pcsx2/DEV9/Win32/tap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/Win32/tap.h -------------------------------------------------------------------------------- /pcsx2/DEV9/flash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/flash.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/net.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/net.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/net.h -------------------------------------------------------------------------------- /pcsx2/DEV9/pcap_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/pcap_io.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/pcap_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/pcap_io.h -------------------------------------------------------------------------------- /pcsx2/DEV9/smap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/smap.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/smap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/smap.h -------------------------------------------------------------------------------- /pcsx2/DEV9/sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/sockets.cpp -------------------------------------------------------------------------------- /pcsx2/DEV9/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DEV9/sockets.h -------------------------------------------------------------------------------- /pcsx2/DebugTools/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DebugTools/Debug.h -------------------------------------------------------------------------------- /pcsx2/DebugTools/DisASM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DebugTools/DisASM.h -------------------------------------------------------------------------------- /pcsx2/DebugTools/DisVUops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DebugTools/DisVUops.h -------------------------------------------------------------------------------- /pcsx2/DebugTools/SymbolMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/DebugTools/SymbolMap.h -------------------------------------------------------------------------------- /pcsx2/Dmac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Dmac.cpp -------------------------------------------------------------------------------- /pcsx2/Dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Dmac.h -------------------------------------------------------------------------------- /pcsx2/Docs/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | -------------------------------------------------------------------------------- /pcsx2/Docs/Debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Docs/Debugger.md -------------------------------------------------------------------------------- /pcsx2/Docs/GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Docs/GPL.txt -------------------------------------------------------------------------------- /pcsx2/Docs/GameIndex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Docs/GameIndex.md -------------------------------------------------------------------------------- /pcsx2/Docs/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Docs/License.txt -------------------------------------------------------------------------------- /pcsx2/Docs/PCSX2_FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Docs/PCSX2_FAQ.md -------------------------------------------------------------------------------- /pcsx2/Docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Docs/README.md -------------------------------------------------------------------------------- /pcsx2/Docs/eisvogel.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Docs/eisvogel.tex -------------------------------------------------------------------------------- /pcsx2/Docs/gen-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Docs/gen-docs.sh -------------------------------------------------------------------------------- /pcsx2/Elfheader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Elfheader.cpp -------------------------------------------------------------------------------- /pcsx2/Elfheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Elfheader.h -------------------------------------------------------------------------------- /pcsx2/FPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/FPU.cpp -------------------------------------------------------------------------------- /pcsx2/FW.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/FW.cpp -------------------------------------------------------------------------------- /pcsx2/FW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/FW.h -------------------------------------------------------------------------------- /pcsx2/FiFo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/FiFo.cpp -------------------------------------------------------------------------------- /pcsx2/GS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS.cpp -------------------------------------------------------------------------------- /pcsx2/GS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS.h -------------------------------------------------------------------------------- /pcsx2/GS/GS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GS.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GS.h -------------------------------------------------------------------------------- /pcsx2/GS/GS.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GS.natvis -------------------------------------------------------------------------------- /pcsx2/GS/GSAlignedClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSAlignedClass.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSAlignedClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSAlignedClass.h -------------------------------------------------------------------------------- /pcsx2/GS/GSBlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSBlock.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSBlock.h -------------------------------------------------------------------------------- /pcsx2/GS/GSCapture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSCapture.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSCapture.h -------------------------------------------------------------------------------- /pcsx2/GS/GSClut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSClut.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSClut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSClut.h -------------------------------------------------------------------------------- /pcsx2/GS/GSCrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSCrc.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSCrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSCrc.h -------------------------------------------------------------------------------- /pcsx2/GS/GSDrawingContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSDrawingContext.h -------------------------------------------------------------------------------- /pcsx2/GS/GSDump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSDump.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSDump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSDump.h -------------------------------------------------------------------------------- /pcsx2/GS/GSExtra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSExtra.h -------------------------------------------------------------------------------- /pcsx2/GS/GSGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSGL.h -------------------------------------------------------------------------------- /pcsx2/GS/GSIntrin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSIntrin.h -------------------------------------------------------------------------------- /pcsx2/GS/GSLocalMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSLocalMemory.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSLocalMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSLocalMemory.h -------------------------------------------------------------------------------- /pcsx2/GS/GSLzma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSLzma.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSLzma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSLzma.h -------------------------------------------------------------------------------- /pcsx2/GS/GSPerfMon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSPerfMon.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSPerfMon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSPerfMon.h -------------------------------------------------------------------------------- /pcsx2/GS/GSPng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSPng.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSPng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSPng.h -------------------------------------------------------------------------------- /pcsx2/GS/GSRegs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSRegs.h -------------------------------------------------------------------------------- /pcsx2/GS/GSRingHeap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSRingHeap.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSRingHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSRingHeap.h -------------------------------------------------------------------------------- /pcsx2/GS/GSState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSState.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSState.h -------------------------------------------------------------------------------- /pcsx2/GS/GSTables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSTables.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSTables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSTables.h -------------------------------------------------------------------------------- /pcsx2/GS/GSThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSThread.h -------------------------------------------------------------------------------- /pcsx2/GS/GSThread_CXX11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSThread_CXX11.h -------------------------------------------------------------------------------- /pcsx2/GS/GSUtil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSUtil.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSUtil.h -------------------------------------------------------------------------------- /pcsx2/GS/GSVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSVector.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSVector.h -------------------------------------------------------------------------------- /pcsx2/GS/GSVector4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSVector4.h -------------------------------------------------------------------------------- /pcsx2/GS/GSVector4i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSVector4i.h -------------------------------------------------------------------------------- /pcsx2/GS/GSVector8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSVector8.h -------------------------------------------------------------------------------- /pcsx2/GS/GSVector8i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSVector8i.h -------------------------------------------------------------------------------- /pcsx2/GS/GSXXH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSXXH.cpp -------------------------------------------------------------------------------- /pcsx2/GS/GSXXH.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/GSXXH.h -------------------------------------------------------------------------------- /pcsx2/GS/MultiISA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/MultiISA.cpp -------------------------------------------------------------------------------- /pcsx2/GS/MultiISA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GS/MultiISA.h -------------------------------------------------------------------------------- /pcsx2/GSDumpReplayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GSDumpReplayer.cpp -------------------------------------------------------------------------------- /pcsx2/GSDumpReplayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GSDumpReplayer.h -------------------------------------------------------------------------------- /pcsx2/GameDatabase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GameDatabase.cpp -------------------------------------------------------------------------------- /pcsx2/GameDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GameDatabase.h -------------------------------------------------------------------------------- /pcsx2/GameList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GameList.cpp -------------------------------------------------------------------------------- /pcsx2/GameList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/GameList.h -------------------------------------------------------------------------------- /pcsx2/Gif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Gif.cpp -------------------------------------------------------------------------------- /pcsx2/Gif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Gif.h -------------------------------------------------------------------------------- /pcsx2/Gif_Logger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Gif_Logger.cpp -------------------------------------------------------------------------------- /pcsx2/Gif_Unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Gif_Unit.cpp -------------------------------------------------------------------------------- /pcsx2/Gif_Unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Gif_Unit.h -------------------------------------------------------------------------------- /pcsx2/Hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Hardware.h -------------------------------------------------------------------------------- /pcsx2/Host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Host.cpp -------------------------------------------------------------------------------- /pcsx2/Host.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Host.h -------------------------------------------------------------------------------- /pcsx2/Hotkeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Hotkeys.cpp -------------------------------------------------------------------------------- /pcsx2/Hw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Hw.cpp -------------------------------------------------------------------------------- /pcsx2/Hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Hw.h -------------------------------------------------------------------------------- /pcsx2/HwRead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/HwRead.cpp -------------------------------------------------------------------------------- /pcsx2/HwWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/HwWrite.cpp -------------------------------------------------------------------------------- /pcsx2/INISettingsInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/INISettingsInterface.h -------------------------------------------------------------------------------- /pcsx2/IPU/IPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IPU/IPU.cpp -------------------------------------------------------------------------------- /pcsx2/IPU/IPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IPU/IPU.h -------------------------------------------------------------------------------- /pcsx2/IPU/IPU_Fifo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IPU/IPU_Fifo.cpp -------------------------------------------------------------------------------- /pcsx2/IPU/IPU_Fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IPU/IPU_Fifo.h -------------------------------------------------------------------------------- /pcsx2/IPU/IPU_MultiISA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IPU/IPU_MultiISA.cpp -------------------------------------------------------------------------------- /pcsx2/IPU/IPU_MultiISA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IPU/IPU_MultiISA.h -------------------------------------------------------------------------------- /pcsx2/IPU/IPUdither.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IPU/IPUdither.cpp -------------------------------------------------------------------------------- /pcsx2/IPU/IPUdma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IPU/IPUdma.cpp -------------------------------------------------------------------------------- /pcsx2/IPU/IPUdma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IPU/IPUdma.h -------------------------------------------------------------------------------- /pcsx2/IPU/mpeg2_vlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IPU/mpeg2_vlc.h -------------------------------------------------------------------------------- /pcsx2/IPU/yuv2rgb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IPU/yuv2rgb.cpp -------------------------------------------------------------------------------- /pcsx2/IPU/yuv2rgb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IPU/yuv2rgb.h -------------------------------------------------------------------------------- /pcsx2/ImGui/FullscreenUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ImGui/FullscreenUI.cpp -------------------------------------------------------------------------------- /pcsx2/ImGui/FullscreenUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ImGui/FullscreenUI.h -------------------------------------------------------------------------------- /pcsx2/ImGui/ImGuiManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ImGui/ImGuiManager.cpp -------------------------------------------------------------------------------- /pcsx2/ImGui/ImGuiManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ImGui/ImGuiManager.h -------------------------------------------------------------------------------- /pcsx2/ImGui/ImGuiOverlays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ImGui/ImGuiOverlays.h -------------------------------------------------------------------------------- /pcsx2/Input/DInputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Input/DInputSource.cpp -------------------------------------------------------------------------------- /pcsx2/Input/DInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Input/DInputSource.h -------------------------------------------------------------------------------- /pcsx2/Input/InputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Input/InputManager.cpp -------------------------------------------------------------------------------- /pcsx2/Input/InputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Input/InputManager.h -------------------------------------------------------------------------------- /pcsx2/Input/InputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Input/InputSource.cpp -------------------------------------------------------------------------------- /pcsx2/Input/InputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Input/InputSource.h -------------------------------------------------------------------------------- /pcsx2/Input/SDLInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Input/SDLInputSource.h -------------------------------------------------------------------------------- /pcsx2/Input/XInputSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Input/XInputSource.cpp -------------------------------------------------------------------------------- /pcsx2/Input/XInputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Input/XInputSource.h -------------------------------------------------------------------------------- /pcsx2/Interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Interpreter.cpp -------------------------------------------------------------------------------- /pcsx2/IopBios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IopBios.cpp -------------------------------------------------------------------------------- /pcsx2/IopBios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IopBios.h -------------------------------------------------------------------------------- /pcsx2/IopCounters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IopCounters.cpp -------------------------------------------------------------------------------- /pcsx2/IopCounters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IopCounters.h -------------------------------------------------------------------------------- /pcsx2/IopDma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IopDma.cpp -------------------------------------------------------------------------------- /pcsx2/IopDma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IopDma.h -------------------------------------------------------------------------------- /pcsx2/IopGte.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IopGte.cpp -------------------------------------------------------------------------------- /pcsx2/IopGte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IopGte.h -------------------------------------------------------------------------------- /pcsx2/IopHw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IopHw.cpp -------------------------------------------------------------------------------- /pcsx2/IopHw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IopHw.h -------------------------------------------------------------------------------- /pcsx2/IopIrq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IopIrq.cpp -------------------------------------------------------------------------------- /pcsx2/IopMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IopMem.cpp -------------------------------------------------------------------------------- /pcsx2/IopMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IopMem.h -------------------------------------------------------------------------------- /pcsx2/IopModuleNames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/IopModuleNames.cpp -------------------------------------------------------------------------------- /pcsx2/LogSink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/LogSink.cpp -------------------------------------------------------------------------------- /pcsx2/LogSink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/LogSink.h -------------------------------------------------------------------------------- /pcsx2/MMI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/MMI.cpp -------------------------------------------------------------------------------- /pcsx2/MTGS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/MTGS.cpp -------------------------------------------------------------------------------- /pcsx2/MTGS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/MTGS.h -------------------------------------------------------------------------------- /pcsx2/MTVU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/MTVU.cpp -------------------------------------------------------------------------------- /pcsx2/MTVU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/MTVU.h -------------------------------------------------------------------------------- /pcsx2/Mdec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Mdec.cpp -------------------------------------------------------------------------------- /pcsx2/Mdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Mdec.h -------------------------------------------------------------------------------- /pcsx2/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Memory.cpp -------------------------------------------------------------------------------- /pcsx2/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Memory.h -------------------------------------------------------------------------------- /pcsx2/MemoryCardFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/MemoryCardFile.cpp -------------------------------------------------------------------------------- /pcsx2/MemoryCardFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/MemoryCardFile.h -------------------------------------------------------------------------------- /pcsx2/MemoryCardFolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/MemoryCardFolder.cpp -------------------------------------------------------------------------------- /pcsx2/MemoryCardFolder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/MemoryCardFolder.h -------------------------------------------------------------------------------- /pcsx2/MemoryCardProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/MemoryCardProtocol.cpp -------------------------------------------------------------------------------- /pcsx2/MemoryCardProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/MemoryCardProtocol.h -------------------------------------------------------------------------------- /pcsx2/MemoryTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/MemoryTypes.h -------------------------------------------------------------------------------- /pcsx2/MultitapProtocol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/MultitapProtocol.cpp -------------------------------------------------------------------------------- /pcsx2/MultitapProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/MultitapProtocol.h -------------------------------------------------------------------------------- /pcsx2/PAD/Host/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/PAD/Host/Global.h -------------------------------------------------------------------------------- /pcsx2/PAD/Host/KeyStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/PAD/Host/KeyStatus.cpp -------------------------------------------------------------------------------- /pcsx2/PAD/Host/KeyStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/PAD/Host/KeyStatus.h -------------------------------------------------------------------------------- /pcsx2/PAD/Host/PAD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/PAD/Host/PAD.cpp -------------------------------------------------------------------------------- /pcsx2/PAD/Host/PAD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/PAD/Host/PAD.h -------------------------------------------------------------------------------- /pcsx2/PCSX2Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/PCSX2Base.h -------------------------------------------------------------------------------- /pcsx2/PINE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/PINE.cpp -------------------------------------------------------------------------------- /pcsx2/PINE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/PINE.h -------------------------------------------------------------------------------- /pcsx2/Patch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Patch.cpp -------------------------------------------------------------------------------- /pcsx2/Patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Patch.h -------------------------------------------------------------------------------- /pcsx2/Pcsx2Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Pcsx2Config.cpp -------------------------------------------------------------------------------- /pcsx2/PerformanceMetrics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/PerformanceMetrics.cpp -------------------------------------------------------------------------------- /pcsx2/PerformanceMetrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/PerformanceMetrics.h -------------------------------------------------------------------------------- /pcsx2/PrecompiledHeader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/PrecompiledHeader.cpp -------------------------------------------------------------------------------- /pcsx2/PrecompiledHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/PrecompiledHeader.h -------------------------------------------------------------------------------- /pcsx2/R3000A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/R3000A.cpp -------------------------------------------------------------------------------- /pcsx2/R3000A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/R3000A.h -------------------------------------------------------------------------------- /pcsx2/R3000AInterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/R3000AInterpreter.cpp -------------------------------------------------------------------------------- /pcsx2/R3000AOpcodeTables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/R3000AOpcodeTables.cpp -------------------------------------------------------------------------------- /pcsx2/R5900.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/R5900.cpp -------------------------------------------------------------------------------- /pcsx2/R5900.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/R5900.h -------------------------------------------------------------------------------- /pcsx2/R5900OpcodeImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/R5900OpcodeImpl.cpp -------------------------------------------------------------------------------- /pcsx2/R5900OpcodeTables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/R5900OpcodeTables.cpp -------------------------------------------------------------------------------- /pcsx2/R5900OpcodeTables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/R5900OpcodeTables.h -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/RDebug/deci2.cpp -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/RDebug/deci2.h -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/RDebug/deci2.txt -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2_dbgp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/RDebug/deci2_dbgp.cpp -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2_dbgp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/RDebug/deci2_dbgp.h -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2_dcmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/RDebug/deci2_dcmp.cpp -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2_dcmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/RDebug/deci2_dcmp.h -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2_drfp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/RDebug/deci2_drfp.cpp -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2_drfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/RDebug/deci2_drfp.h -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2_iloadp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/RDebug/deci2_iloadp.h -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2_netmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/RDebug/deci2_netmp.cpp -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2_netmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/RDebug/deci2_netmp.h -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2_ttyp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/RDebug/deci2_ttyp.cpp -------------------------------------------------------------------------------- /pcsx2/RDebug/deci2_ttyp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/RDebug/deci2_ttyp.h -------------------------------------------------------------------------------- /pcsx2/RDebug/iloadp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/RDebug/iloadp.txt -------------------------------------------------------------------------------- /pcsx2/Recording/PadData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Recording/PadData.cpp -------------------------------------------------------------------------------- /pcsx2/Recording/PadData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Recording/PadData.h -------------------------------------------------------------------------------- /pcsx2/Resources/PCSX2.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Resources/PCSX2.icns -------------------------------------------------------------------------------- /pcsx2/SPR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPR.cpp -------------------------------------------------------------------------------- /pcsx2/SPR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPR.h -------------------------------------------------------------------------------- /pcsx2/SPU2/ADSR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/ADSR.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/Debug.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/Debug.h -------------------------------------------------------------------------------- /pcsx2/SPU2/Dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/Dma.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/Dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/Dma.h -------------------------------------------------------------------------------- /pcsx2/SPU2/DplIIdecoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/DplIIdecoder.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/Global.h -------------------------------------------------------------------------------- /pcsx2/SPU2/Mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/Mixer.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/Mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/Mixer.h -------------------------------------------------------------------------------- /pcsx2/SPU2/ReadInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/ReadInput.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/RegTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/RegTable.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/Reverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/Reverb.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/SndOut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/SndOut.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/SndOut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/SndOut.h -------------------------------------------------------------------------------- /pcsx2/SPU2/SndOut_Cubeb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/SndOut_Cubeb.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/Wavedump_wav.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/Wavedump_wav.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/defs.h -------------------------------------------------------------------------------- /pcsx2/SPU2/regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/regs.h -------------------------------------------------------------------------------- /pcsx2/SPU2/spdif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/spdif.h -------------------------------------------------------------------------------- /pcsx2/SPU2/spu2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/spu2.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/spu2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/spu2.h -------------------------------------------------------------------------------- /pcsx2/SPU2/spu2freeze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/spu2freeze.cpp -------------------------------------------------------------------------------- /pcsx2/SPU2/spu2sys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SPU2/spu2sys.cpp -------------------------------------------------------------------------------- /pcsx2/SaveState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SaveState.cpp -------------------------------------------------------------------------------- /pcsx2/SaveState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SaveState.h -------------------------------------------------------------------------------- /pcsx2/ShaderCacheVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ShaderCacheVersion.h -------------------------------------------------------------------------------- /pcsx2/ShiftJisToUnicode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ShiftJisToUnicode.cpp -------------------------------------------------------------------------------- /pcsx2/Sif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Sif.cpp -------------------------------------------------------------------------------- /pcsx2/Sif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Sif.h -------------------------------------------------------------------------------- /pcsx2/Sif0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Sif0.cpp -------------------------------------------------------------------------------- /pcsx2/Sif1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Sif1.cpp -------------------------------------------------------------------------------- /pcsx2/Sifcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Sifcmd.h -------------------------------------------------------------------------------- /pcsx2/SingleRegisterTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SingleRegisterTypes.h -------------------------------------------------------------------------------- /pcsx2/Sio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Sio.cpp -------------------------------------------------------------------------------- /pcsx2/Sio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Sio.h -------------------------------------------------------------------------------- /pcsx2/SioTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SioTypes.h -------------------------------------------------------------------------------- /pcsx2/SourceLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SourceLog.cpp -------------------------------------------------------------------------------- /pcsx2/StateWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/StateWrapper.cpp -------------------------------------------------------------------------------- /pcsx2/StateWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/StateWrapper.h -------------------------------------------------------------------------------- /pcsx2/SysForwardDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/SysForwardDefs.h -------------------------------------------------------------------------------- /pcsx2/System.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/System.cpp -------------------------------------------------------------------------------- /pcsx2/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/System.h -------------------------------------------------------------------------------- /pcsx2/USB/USB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/USB.cpp -------------------------------------------------------------------------------- /pcsx2/USB/USB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/USB.h -------------------------------------------------------------------------------- /pcsx2/USB/deviceproxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/deviceproxy.cpp -------------------------------------------------------------------------------- /pcsx2/USB/deviceproxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/deviceproxy.h -------------------------------------------------------------------------------- /pcsx2/USB/qemu-usb/bus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/qemu-usb/bus.cpp -------------------------------------------------------------------------------- /pcsx2/USB/qemu-usb/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/qemu-usb/core.cpp -------------------------------------------------------------------------------- /pcsx2/USB/qemu-usb/desc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/qemu-usb/desc.cpp -------------------------------------------------------------------------------- /pcsx2/USB/qemu-usb/desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/qemu-usb/desc.h -------------------------------------------------------------------------------- /pcsx2/USB/qemu-usb/hid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/qemu-usb/hid.cpp -------------------------------------------------------------------------------- /pcsx2/USB/qemu-usb/hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/qemu-usb/hid.h -------------------------------------------------------------------------------- /pcsx2/USB/qemu-usb/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/qemu-usb/queue.h -------------------------------------------------------------------------------- /pcsx2/USB/qemu-usb/qusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/qemu-usb/qusb.h -------------------------------------------------------------------------------- /pcsx2/USB/usb-eyetoy/ov519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/usb-eyetoy/ov519.h -------------------------------------------------------------------------------- /pcsx2/USB/usb-hid/usb-hid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/usb-hid/usb-hid.h -------------------------------------------------------------------------------- /pcsx2/USB/usb-mic/audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/usb-mic/audio.h -------------------------------------------------------------------------------- /pcsx2/USB/usb-mic/audiodev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/usb-mic/audiodev.h -------------------------------------------------------------------------------- /pcsx2/USB/usb-msd/usb-msd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/usb-msd/usb-msd.h -------------------------------------------------------------------------------- /pcsx2/USB/usb-pad/lg/lg_ff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/usb-pad/lg/lg_ff.h -------------------------------------------------------------------------------- /pcsx2/USB/usb-pad/usb-pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/USB/usb-pad/usb-pad.h -------------------------------------------------------------------------------- /pcsx2/VMManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VMManager.cpp -------------------------------------------------------------------------------- /pcsx2/VMManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VMManager.h -------------------------------------------------------------------------------- /pcsx2/VU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VU.h -------------------------------------------------------------------------------- /pcsx2/VU0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VU0.cpp -------------------------------------------------------------------------------- /pcsx2/VU0micro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VU0micro.cpp -------------------------------------------------------------------------------- /pcsx2/VU0microInterp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VU0microInterp.cpp -------------------------------------------------------------------------------- /pcsx2/VU1micro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VU1micro.cpp -------------------------------------------------------------------------------- /pcsx2/VU1microInterp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VU1microInterp.cpp -------------------------------------------------------------------------------- /pcsx2/VUflags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VUflags.cpp -------------------------------------------------------------------------------- /pcsx2/VUflags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VUflags.h -------------------------------------------------------------------------------- /pcsx2/VUmicro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VUmicro.cpp -------------------------------------------------------------------------------- /pcsx2/VUmicro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VUmicro.h -------------------------------------------------------------------------------- /pcsx2/VUmicroMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VUmicroMem.cpp -------------------------------------------------------------------------------- /pcsx2/VUops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VUops.cpp -------------------------------------------------------------------------------- /pcsx2/VUops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VUops.h -------------------------------------------------------------------------------- /pcsx2/Vif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Vif.cpp -------------------------------------------------------------------------------- /pcsx2/Vif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Vif.h -------------------------------------------------------------------------------- /pcsx2/Vif0_Dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Vif0_Dma.cpp -------------------------------------------------------------------------------- /pcsx2/Vif1_Dma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Vif1_Dma.cpp -------------------------------------------------------------------------------- /pcsx2/Vif1_MFIFO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Vif1_MFIFO.cpp -------------------------------------------------------------------------------- /pcsx2/Vif_Codes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Vif_Codes.cpp -------------------------------------------------------------------------------- /pcsx2/Vif_Dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Vif_Dma.h -------------------------------------------------------------------------------- /pcsx2/Vif_Transfer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Vif_Transfer.cpp -------------------------------------------------------------------------------- /pcsx2/Vif_Unpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Vif_Unpack.cpp -------------------------------------------------------------------------------- /pcsx2/Vif_Unpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/Vif_Unpack.h -------------------------------------------------------------------------------- /pcsx2/VirtualMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VirtualMemory.cpp -------------------------------------------------------------------------------- /pcsx2/VirtualMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/VirtualMemory.h -------------------------------------------------------------------------------- /pcsx2/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/packages.config -------------------------------------------------------------------------------- /pcsx2/pcsx2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/pcsx2.vcxproj -------------------------------------------------------------------------------- /pcsx2/pcsx2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/pcsx2.vcxproj.filters -------------------------------------------------------------------------------- /pcsx2/ps2/BiosTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ps2/BiosTools.cpp -------------------------------------------------------------------------------- /pcsx2/ps2/BiosTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ps2/BiosTools.h -------------------------------------------------------------------------------- /pcsx2/ps2/HwInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ps2/HwInternal.h -------------------------------------------------------------------------------- /pcsx2/ps2/Iop/IopHwRead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ps2/Iop/IopHwRead.cpp -------------------------------------------------------------------------------- /pcsx2/ps2/Iop/IopHwWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ps2/Iop/IopHwWrite.cpp -------------------------------------------------------------------------------- /pcsx2/ps2/Iop/PsxBios.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ps2/Iop/PsxBios.cpp -------------------------------------------------------------------------------- /pcsx2/ps2/eeHwTraceLog.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ps2/eeHwTraceLog.inl -------------------------------------------------------------------------------- /pcsx2/ps2/pgif.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ps2/pgif.cpp -------------------------------------------------------------------------------- /pcsx2/ps2/pgif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/ps2/pgif.h -------------------------------------------------------------------------------- /pcsx2/sif2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/sif2.cpp -------------------------------------------------------------------------------- /pcsx2/vtlb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/vtlb.cpp -------------------------------------------------------------------------------- /pcsx2/vtlb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/vtlb.h -------------------------------------------------------------------------------- /pcsx2/windows/AppIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/windows/AppIcon.ico -------------------------------------------------------------------------------- /pcsx2/windows/Optimus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/windows/Optimus.cpp -------------------------------------------------------------------------------- /pcsx2/windows/PCSX2.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/windows/PCSX2.manifest -------------------------------------------------------------------------------- /pcsx2/windows/PCSX2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/windows/PCSX2.rc -------------------------------------------------------------------------------- /pcsx2/x86/BaseblockEx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/BaseblockEx.cpp -------------------------------------------------------------------------------- /pcsx2/x86/BaseblockEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/BaseblockEx.h -------------------------------------------------------------------------------- /pcsx2/x86/R5900_Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/R5900_Profiler.h -------------------------------------------------------------------------------- /pcsx2/x86/iCOP0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iCOP0.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iCOP0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iCOP0.h -------------------------------------------------------------------------------- /pcsx2/x86/iCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iCore.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iCore.h -------------------------------------------------------------------------------- /pcsx2/x86/iFPU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iFPU.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iFPU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iFPU.h -------------------------------------------------------------------------------- /pcsx2/x86/iFPUd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iFPUd.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iMMI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iMMI.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iMMI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iMMI.h -------------------------------------------------------------------------------- /pcsx2/x86/iR3000A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iR3000A.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iR3000A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iR3000A.h -------------------------------------------------------------------------------- /pcsx2/x86/iR3000Atables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iR3000Atables.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iR5900.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iR5900.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900Analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iR5900Analysis.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iR5900Analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iR5900Analysis.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900Arit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iR5900Arit.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900AritImm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iR5900AritImm.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900Branch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iR5900Branch.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900Jump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iR5900Jump.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900LoadStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iR5900LoadStore.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900Misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iR5900Misc.cpp -------------------------------------------------------------------------------- /pcsx2/x86/iR5900Move.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iR5900Move.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900MultDiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iR5900MultDiv.h -------------------------------------------------------------------------------- /pcsx2/x86/iR5900Shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/iR5900Shift.h -------------------------------------------------------------------------------- /pcsx2/x86/ir5900tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/ir5900tables.cpp -------------------------------------------------------------------------------- /pcsx2/x86/microVU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/microVU.cpp -------------------------------------------------------------------------------- /pcsx2/x86/microVU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/microVU.h -------------------------------------------------------------------------------- /pcsx2/x86/microVU_Alloc.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/microVU_Alloc.inl -------------------------------------------------------------------------------- /pcsx2/x86/microVU_Branch.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/microVU_Branch.inl -------------------------------------------------------------------------------- /pcsx2/x86/microVU_Clamp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/microVU_Clamp.inl -------------------------------------------------------------------------------- /pcsx2/x86/microVU_Flags.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/microVU_Flags.inl -------------------------------------------------------------------------------- /pcsx2/x86/microVU_IR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/microVU_IR.h -------------------------------------------------------------------------------- /pcsx2/x86/microVU_Log.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/microVU_Log.inl -------------------------------------------------------------------------------- /pcsx2/x86/microVU_Lower.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/microVU_Lower.inl -------------------------------------------------------------------------------- /pcsx2/x86/microVU_Macro.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/microVU_Macro.inl -------------------------------------------------------------------------------- /pcsx2/x86/microVU_Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/microVU_Misc.h -------------------------------------------------------------------------------- /pcsx2/x86/microVU_Misc.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/microVU_Misc.inl -------------------------------------------------------------------------------- /pcsx2/x86/microVU_Profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/microVU_Profiler.h -------------------------------------------------------------------------------- /pcsx2/x86/microVU_Tables.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/microVU_Tables.inl -------------------------------------------------------------------------------- /pcsx2/x86/microVU_Upper.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/microVU_Upper.inl -------------------------------------------------------------------------------- /pcsx2/x86/newVif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/newVif.h -------------------------------------------------------------------------------- /pcsx2/x86/newVif_Dynarec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/newVif_Dynarec.cpp -------------------------------------------------------------------------------- /pcsx2/x86/newVif_Unpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/newVif_Unpack.cpp -------------------------------------------------------------------------------- /pcsx2/x86/newVif_UnpackSSE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/pcsx2/x86/newVif_UnpackSSE.h -------------------------------------------------------------------------------- /tests/ctest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/tests/ctest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/run_test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/tests/run_test.pl -------------------------------------------------------------------------------- /tools/merge_ws_ni_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/tools/merge_ws_ni_patches.py -------------------------------------------------------------------------------- /updater/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/updater/CMakeLists.txt -------------------------------------------------------------------------------- /updater/SZErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/updater/SZErrors.h -------------------------------------------------------------------------------- /updater/Updater.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/updater/Updater.cpp -------------------------------------------------------------------------------- /updater/Updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/updater/Updater.h -------------------------------------------------------------------------------- /updater/UpdaterExtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/updater/UpdaterExtractor.h -------------------------------------------------------------------------------- /updater/Windows/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/updater/Windows/resource.h -------------------------------------------------------------------------------- /updater/Windows/updater.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/updater/Windows/updater.ico -------------------------------------------------------------------------------- /updater/Windows/updater.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/updater/Windows/updater.rc -------------------------------------------------------------------------------- /updater/updater.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SirMangler/pcsx2/HEAD/updater/updater.vcxproj --------------------------------------------------------------------------------