| Age | Commit message (Collapse) | Author |
|
The relevant values are already assigned further down in the lambda, so
this can be removed entirely.
|
|
Prevents potential inclusion issues from occurring.
|
|
Removes const from some variables that are returned from functions, as
this allows the move assignment/constructors to execute for them.
|
|
video_core: Fix, add and rename pixel formats
|
|
|
|
If the user had cancelled, it would clear the text box. That behavior was sanitized underneath, but may anyways cause inconveniences.
|
|
Co-Authored-By: LC <lioncash@users.noreply.github.com>
|
|
This picks a default directory and file name. If on Windows and save-as screenshot saving is enabled, it asks the user, first defaulting to the default screenshot path, and with a default filename in the format `[title_id]_[year-mt-dy_hr-mn-sc-msc].png`. Otherwise, or on Linux for now, it simply saves a file in that directory with that file name.
|
|
This adds two options to the General -> UI tab. The first disables picking a place to save the file. The second chooses a default directory for saving screenshots.
|
|
Adds a screenshots directory as a path managed by FileUtil.
|
|
We already get the format type before converting shadow formats and during shadow formats.
|
|
gl_arb_decompiler: Use NV_shader_buffer_{load,store} on assembly shaders
|
|
We can make use of emplace()'s return value to determine whether or not
we need to perform an increment.
emplace() performs no insertion if an element already exist, so this can
eliminate a find() call.
|
|
|
|
Co-authored-by: Morph <39850852+Morph1984@users.noreply.github.com>
|
|
|
|
|
|
|
|
These were only kept for compatibility with old code during testing.
|
|
|
|
Also gets rid of unnecessary explicit namespace usage.
|
|
|
|
One less global variable.
|
|
Makes the code more readable
Co-Authored-By: LC <lioncash@users.noreply.github.com>
|
|
|
|
whoops
|
|
Fixes a regression where the global config takes up a lot of extra space.
|
|
The way the configurations are set up, it is not trivial to do this. I'll leave it as is, but the API selection, and the background color and volume slider selectors are kind of not following the style.
|
|
|
|
Not a catch-all, but helps clean up the code for when I do this a lot. Also fixes some bugs caught in configure_graphics.
|
|
I noticed some of the code could be reduced to just passing the function an int, since I was doing the same thing over and over. Also clang-formats configure_graphics
|
|
|
|
Let's see if I make up my mind.
|
|
Also adds trackers for graphics and advanced graphics
|
|
|
|
|
|
|
|
Prevents mass-coloring of elements later on
|
|
Fixes visibility in the built-in dark theme
|
|
|
|
Sets up initial support for implementing colored tristate functions. These functions color a QWidget blue when it's overriding a global setting, and discolor it when not. The lack of color indicates it uses the global state, replacing the Qt::CheckState::PartiallyChecked state with the global state.
|
|
axes were very sensitive when mapping controls.
|
|
Fixes random swkbd popups in monster hunter
|
|
This commit adds a network abstraction designed to implement bsd:s but
at the same time work as a generic abstraction to implement any
networking code we have to use from core.
This is implemented on top of BSD sockets on Unix systems and winsock on
Windows. The code is designed around winsocks having compatibility
definitions to support both BSD and Windows sockets.
|
|
frontend: Improve wait tree readability for dark themes
|
|
In file included from src/core/hle/kernel/memory/page_table.cpp:5:
src/./common/alignment.h:67:68: error: no member named 'align_val_t' in namespace 'std'
return static_cast<T*>(::operator new (n * sizeof(T), std::align_val_t{Align}));
~~~~~^
src/./common/alignment.h:71:51: error: no member named 'align_val_t' in namespace 'std'
::operator delete (p, n * sizeof(T), std::align_val_t{Align});
~~~~~^
|
|
|
|
|
|
|
|
Co-Authored-By: Weiyi Wang <wwylele@gmail.com>
|