Commits
master
Name already in use
Commits on May 16, 2023
-
Merge pull request #11828 from JosJuice/wia-convert-comments
DiscIO: Improve comments in WIARVZFileReader::Convert
-
-
-
Commits on May 14, 2023
-
Merge pull request #11827 from AdmiralCurtiss/ctest-output-on-failure
CMake: Set --output-on-failure flag for unittests target.
Commits on May 4, 2023
-
PPCTables: Remove unnecessary includes
Gets rid of a lingering dependency on the interpreter in common code and a bunch of indirect inclusions.
Commits on May 2, 2023
-
SymbolDB: Add constructors to Symbol
Allows for much more convenient in-place construction.
-
PPCSymbolDB: Use emplace() where applicable
Avoids default constructing an entry in the map that just gets immediately overwritten. Also gets rid of some redundant map lookups.
-
JitInterface: Remove global system accessor
We can use JitInterface's system member variable to avoid needing this
-
Merge pull request #11796 from sepalani/gecko-sort
Gecko/ARCode: Add sort by enabled state
-
Common/JitRegister: Move interface into Common namespace
Makes the namespace consistent with other common utilities.
Commits on Apr 29, 2023
-
Merge pull request #11793 from brad0/openbsd_iconv_build_fix
Fix build of iconv code on OpenBSD
-
Merge pull request #11801 from Dentomologist/rename_graphicsinteger_t…
…o_configinteger Qt: Rename GraphicsInteger to ConfigInteger
Commits on Apr 28, 2023
-
Merge pull request #11800 from Dentomologist/rename_graphicsradioint_…
…to_configradioint Qt: Rename GraphicsRadioInt to ConfigRadioInt
Commits on Apr 26, 2023
-
Merge pull request #11794 from shuffle2/color-scheme-changed
DolphinQt: reset stylesheets on colorSchemeChanged
-
Merge pull request #11795 from Dentomologist/rename_graphicschoice_to…
…_configchoice Qt: Rename GraphicsChoice to ConfigChoice
Commits on Apr 25, 2023
-
Merge pull request #11774 from shuffle2/qtnext
DolphinQt: fix some usability issues
-
Merge pull request #11775 from shuffle2/qtnext2
qt: raise min version to 6
-
Merge pull request #11765 from Minty-Meeo/ppc-cache-savestate
Fix PPCCache savestate behavior
-
Merge pull request #11788 from shuffle2/qtdpiround
DolphinQt: use default dpi rounding mode (passthrough)
Commits on Apr 24, 2023
-
Common: Move CodeTrace.cpp/.h into Core
This interface relies on Core details and shouldn't be in Common to begin with, since it's not a general utility.
-
Common/TraversalProto: Move interface into Common namespace
Gets the types out of the global namespace.
-
Common/TraversalClient: Move interface into Common namespace
Gets the interface out of the global namespace.
Commits on Apr 20, 2023
-
Merge pull request #11777 from Dentomologist/move_balloontip_files
Qt/Config: Move BalloonTip files from Graphics to ToolTipControls
-
Merge pull request #11776 from Dentomologist/remove_graphicsboolex
Qt: Remove unused class GraphicsBoolEx
Commits on Apr 19, 2023
-
Common/TraversalClient: Use correct deleter with g_MainNetHost
Previously this was using the default deleter (which just calls delete on the pointer), which is incorrect, since the ENetHost instance is allocated through ENet's C API, so we need to use its functions to deallocate the host instead.
-
Common/LinearDiskCache: Move interface into Common namespace
Gets the interface out of the global namespace.
Commits on Apr 18, 2023
-
Common/CommonFuncs: Move interface into Common namespace
Gets these functions out of the global namespace.
Commits on Apr 16, 2023
-
Merge pull request #11742 from K0bin/document-provider-2
Android: Document Provider improvements
-
Merge pull request #11754 from OatmealDome/sdl2-2.26.5
Externals: Update SDL to 2.26.5
Commits on Apr 15, 2023
-
Common/MathUtil: Move IntLog2 into MathUtil namespace
Gets this out of the global namespace.
-
Common/MathUtil: Remove MathFloatVectorSum()
This isn't used anywhere and not really a generic utility, so we can get rid of it. This also lets us remove MathUtil.cpp, since this was the only thing within that file.
Commits on Apr 13, 2023
-
Common/IniFile: Move interface into Common namespace
Gets this out of the global namespace and into the Common namespace