Commit Graph

51 Commits (efa7d8d04b4738bca213c29d346e73d0b97cb18a)

Author SHA1 Message Date
Zach Hilman efa7d8d04b settings: Add config option for kiosk (quest) mode 6 years ago
bunnei 96412848a9
Merge pull request #2482 from DarkLordZach/prepo
core: Add detailed local reporting feature for development
6 years ago
ReinUsesLisp 7259f7a733 rasterizer_opengl: Remove OpenGL core profile 6 years ago
Zach Hilman 658d2ee97d settings: Add 'Reporting Services' config option
Full enable/disable for all reports.
6 years ago
Lioncash 2b1fcc8a14 common/file_util: Make ReadFileToString and WriteStringToFile consistent
Makes the parameter ordering consistent, and also makes the filename
parameter a std::string. A std::string would be constructed anyways with
the previous code, as IOFile's only constructor with a filepath is one
taking a std::string.

We can also make WriteStringToFile's string parameter utilize a
std::string_view for the string, making use of our previous changes to
IOFile.
6 years ago
Fernando Sahmkow 788497fd9d Allow picking a Compatibility Profile for OpenGL.
This option allows picking the compatibility profile since a lot of bugs
are fixed in it. We devs will use this option to easierly debug current
problems in our Core implementation.:wq
6 years ago
fearlessTobi ff7e6a42c1 core/yuzu: Remove enable_nfc setting
This was initially added to prevent problems from stubbed/not implemented NFC services, but as we never encountered such and as it's only used in a deprecated function anyway, I guess we can just remove it to prevent more clutter of the settings.
6 years ago
ReinUsesLisp 45ef421b6b yuzu_cmd/config: Replace C casts with static_cast 6 years ago
ReinUsesLisp fedef7bda3 yuzu_cmd/config: Silent implicit cast warning 6 years ago
bunnei d6015ee211 settings: Add new graphics setting for use_asynchronous_gpu_emulation. 6 years ago
ReinUsesLisp e78da8dc1f settings: Hide shader cache behind a setting 6 years ago
Zach Hilman 05dbb47af5 settings: Use std::chrono::seconds instead of s64 for RTC 6 years ago
Zach Hilman c6016856d8 settings: Add custom RTC settings
Stored as signed seconds since epoch.
6 years ago
Zach Hilman c381f46428 config: Store and load disabled add-ons list 6 years ago
bunnei 67ff974387
Merge pull request #1747 from DarkLordZach/exefs-lfs
patch_manager: Add support for applying LayeredFS patches to ExeFS
7 years ago
Zach Hilman 17d8e25cbf settings: Add option to dump ExeFS of games upon launch
When enabled, all exefs(es) will be copied to yuzu/dump/<title_id>/exefs.
7 years ago
Zach Hilman 312ef596a5 configure_input_player: Set minimum width on controls 7 years ago
Zach Hilman b8f7f9651e yuzu_cmd/config: Add config deserialization for multiplayer 7 years ago
Schplee 9a47e40dd6 Correctly sets default system language for yuzu-CLI (#1727)
* Correctly sets default system language for yuzu-CLI

A user reported that yuzu_cmd runs games in Japanese rather than the correct default of English (like yuzu-qt does correctly), this change fixes that.

* fix clang issue

deleted whitespace
7 years ago
bunnei 97605e36f7
Merge pull request #1618 from DarkLordZach/dump-nso
patch_manager: Add support for dumping uncompressed NSOs
7 years ago
Zach Hilman 2a16fd7ffc settings: Add config option to set RNG seed 7 years ago
Zach Hilman 48eb3742b9 settings: Add setting to control NSO dumping
Also adds UI option in Debug > Dump section, with the idea later things to be dumped (i.e. other game data or textures, etc) will use the same group box.
7 years ago
Zach Hilman 45f2a2fe29 acc: Fix account UUID duplication error 7 years ago
Zach Hilman 702622b8f1 profile_manager: Load user icons, names, and UUIDs from system save 7 years ago
Zach Hilman e7e3d5898e settings: Add users and current_user settings and remove username 7 years ago
David 50e4e81fd3 Added Amiibo support (#1390)
* Fixed conflict with nfp

* Few fixups for nfc

* Conflict 2

* Fixed AttachAvailabilityChangeEvent

* Conflict 3

* Fixed byte padding

* Refactored amiibo to not reside in "System"

* Removed remaining references of nfc from system

* used enum for Nfc GetStateOld

* Added missing newline

* Moved file operations to front end

* Conflict 4

* Amiibos now use structs and added mutexes

* Removed amiibo_path
7 years ago
bunnei ee7c2dbf5a config: Rename use_accurate_framebuffers -> use_accurate_gpu_emulation.
- This will be used as a catch-all for slow-but-accurate GPU emulation paths.
7 years ago
Zach Hilman 081f5c1dbf cmd: Support passing game arguments from command line
Uses -p (--program) and following string as args.
7 years ago
fearlessTobi 4d139943f2 Port web_service from Citra 7 years ago
Valentin Vanelslande 19d9b0778a
Update config.cpp 7 years ago
Philippe Babin 9155c8daeb Invalid default value of username in yuzu_cmd (#1334)
* Fix bug where default username value for yuzu_cmd create an userprofile with uninitialize data as username

* Fix format

* Apply code review changes

* Remove nullptr check
7 years ago
fearlessTobi a6efff8b02 Add audio stretching support 7 years ago
Zach Hilman b2268f1f8d settings: Save and load NAND/SD dirs from config 7 years ago
fearlessTobi ba8ff096fd Port #3353 from Citra 7 years ago
Zach Hilman df5b75694f Remove files that are not used 7 years ago
bunnei ca84b530a3 audio_core: Add configuration settings. 7 years ago
Lioncash d66b43dadf file_util: Use an enum class for GetUserPath()
Instead of using an unsigned int as a parameter and expecting a user to
always pass in the correct values, we can just convert the enum into an
enum class and use that type as the parameter type instead, which makes
the interface more type safe.

We also get rid of the bookkeeping "NUM_" element in the enum by just
using an unordered map. This function is generally low-frequency in
terms of calls (and I'd hope so, considering otherwise would mean we're
slamming the disk with IO all the time) so I'd consider this acceptable
in this case.
7 years ago
bunnei 03c2d049d4 settings: Turn docked mode off by default. 7 years ago
James Rowe 638956aa81 Rename logging macro back to LOG_* 7 years ago
bunnei 1bbbd26563 settings: Add a configuration for use_accurate_framebuffers. 7 years ago
bunnei 9bf2a428f9 core: Add a configuration setting for use_multi_core. 7 years ago
Lioncash 3062eb52f4
frontends: Move logging macros over to new fmt-capable ones 7 years ago
bunnei 94f4009c3b config: Use simplified checkbox (from Citra) for CPU JIT. 7 years ago
bunnei 5ecf152c8e config: Rename is_docked to use_docked_mode to be consistent with other config bools. 7 years ago
bunnei 12b05c719e config: Add setting for whether the system is docked or not. 7 years ago
Valentin Vanelslande ee5f5a2c2d
yuzu_cmd: change default cpu core to dynarmic 7 years ago
James Rowe 096be16636 Format: Run the new clang format on everything 7 years ago
bunnei 95ce471774 config: Default log filter to trace. 7 years ago
James Rowe 70e65ee63a Remove settings issues in sdl and fix a few files that broke in mingw 7 years ago
James Rowe f5f28a4f67 Get yuzu sdl to start compiling 7 years ago