- 24 Oct, 2018 32 commits
-
-
bunnei authored
profile_manager: Use std::optional instead of boost::optional
-
bunnei authored
yuzu/configuration/config: Use a std::unique_ptr for qt_config instead of a raw pointer
-
bunnei authored
time_stretch: Remove unused m_channel_count member variable
-
bunnei authored
Implement PointSize Output Attribute.
-
bunnei authored
graphic_breakpoints: Correct translation of strings in BreakpointModel's data() function
-
bunnei authored
npad: Remove unused controller variable from OnInit()
-
bunnei authored
game_list: Use QFileInfo instead of common's file functions
-
bunnei authored
game_list: Make game list column headers translatable
-
bunnei authored
bootmanager: Use QStringLiteral instead of std::string to represent the window title.
-
bunnei authored
perf_stats: Remove unused variable within DoFrameLimiting()
-
bunnei authored
aoc_u: Make use of previously-unused CheckAOCTitleIDMatchesBase() function
-
bunnei authored
maxwell_3d/decoders: Remove unused variables
-
bunnei authored
file_sys: Remove unused variables
-
bunnei authored
logging/backend: Add missing services to the log filters
-
Lioncash authored
Now that we can actually use std::optional on macOS, we don't need to continue using boost::optional here.
-
Lioncash authored
tr() will not function properly on static/global data like this, as the object is only ever constructed once, so the strings won't translate if the language is changed without restarting the program, which is undesirable. Instead we can just turn the map into a plain old function that maps the values to their equivalent strings. This is also lessens the memory allocated, since it's only allocating memory for the strings themselves, and not an encompassing map as well.
-
Mat M authored
qt: Add UI to manage emulated user profiles
-
Zach Hilman authored
Prevents bug where old username would remain if the new username was shorter in length.
-
Lioncash authored
We can just use the facilities that Qt provides instead of pulling in stuff from common. While we're at it, we can also simplify the nearby logging statement's argument by just calling .toStdString()
-
Lioncash authored
These are user-facing strings, so they should be marked as translatable
-
Lioncash authored
This gets rid of an unnecessary type conversion. We can just use the regular QStringLiteral to already format the string as the type setWindowTitle accepts instead of converting from a std::string instance.
-
Lioncash authored
This is only stored to, but never read from.
-
Lioncash authored
This also gets rid of variable shadowing related to the lambda parameter a little bit below this code as well.
-
Lioncash authored
Same behavior, less code.
-
Lioncash authored
We can just call the function instead of duplicating the code here. This also prevents an unused function warning. We also don't need to take the lambda capture by reference. It's just a u64 value, so by value is fine here.
-
Lioncash authored
Also gets rid of an unused variable.
-
Lioncash authored
-
Lioncash authored
-
Lioncash authored
-
Lioncash authored
Just a few overlooked services.
-
Lioncash authored
Makes the class layout consistent with the others.
-
- 23 Oct, 2018 8 commits
-
-
bunnei authored
Added break types to svcBreak
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-
Zach Hilman authored
-