VolcaEM
57b93395a8
Add "Open Quickstart Guide" and "FAQ" buttons to the Help menu
While we're at it, also refactor the function used by OnOpenModsPage to be compatible with other URLs
6 years ago
Ameer
901bc09dd7
Small quality of life indication that mapped button is GC
6 years ago
unknown
8cf6efe677
Reorder variables to comply with the Auzure build pipeline
6 years ago
Ameer
121af3646d
Singleton GC Adapter class, remove globals, fix naming convention
Fix clang formatting
Manual fix for configure_input_player formatting
Add missing lib usb cmake command
6 years ago
Ameer
c94583d867
Clang Formatting
6 years ago
Ameer
0248614add
GC Adapter Implementation
6 years ago
VolcaEM
409fedaf97
Correct function name (2/2)
6 years ago
VolcaEM
182ac8a504
Correct function name (1/2)
6 years ago
VolcaEM
23d57ed4f7
Clang-format
6 years ago
VolcaEM
d11b04ed46
Remove unnecessary conversion
6 years ago
VolcaEM
606e833d26
Address review comment by Lioncash
Co-authored-by: LC <mathew1800@gmail.com>
6 years ago
VolcaEM
b81af6ae9b
Add a "Open Mods Page" button to the GUI
6 years ago
FearlessTobi
a8674a7b86
Fix: fatal error CVT1100 when compiling manifest file
Occurs when doing a local compile in MSVC build. The compiler I'm using is as below:
Microsoft Visual Studio Community 2019 Preview
Version 16.6.0 Preview 5.0
Fixes this error:
CVTRES : fatal error CVT1100: duplicate resource. type:MANIFEST, name:1, language:0x0409
LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt
I have put 0 since previous name was 1. If have other names in mind, please let me know.
Co-Authored-By: dragios <dragios@users.noreply.github.com>
6 years ago
Morph
9bb5bf0b2b
main: Append AVX and FMA instructions to cpu string
Append AVX and FMA instructions to cpu string if the host cpu supports them
6 years ago
David Marcec
a7fe6dc232
Add translation of "Current Boxcat Events"
6 years ago
David Marcec
c7ed7d9427
Fix compilation when not building with boxcat
Fixes compilation when trying to build without boxcat enabled
6 years ago
MerryMage
778f86989a
bootmanager: Remove references to OpenGL for macOS
OpenGL macOS headers definitions clash heavily with each other
6 years ago
Kaiwen Xu
7a59eeb5be
Fix framebuffer size on fractional scaling display.
6 years ago
ReinUsesLisp
d89888389d
yuzu/configuration: Show assembly shaders check box
6 years ago
unknown
20a779299a
Add game versio to title bar
6 years ago
Morph
03fad5ebe8
yuzu/frontend: Remove internal resolution option
6 years ago
FearlessTobi
aaa4822fcb
Actually save the input when clearing/resetting to default
Co-Authored-By: xperia64 <xperiancedapps@gmail.com>
6 years ago
David Marcec
b032ebdfee
Implement macro JIT
6 years ago
Morph
b2af304918
Fix macOS code and change "Swapfile" to "Swap"
6 years ago
Tobias
d0a9caa08f
yuzu/discord_impl: Update the applicationID ( #3977 )
6 years ago
FearlessTobi
9f82a9a244
crypto: Make KeyManager a singleton class
Previously, we were reading the keys everytime a KeyManager object was created, causing yuzu to reread the keys file multiple hundreds of times when loading the game list.
With this change, it is only loaded once.
On my system, this decreased game list loading times by a factor of 20.
6 years ago
ReinUsesLisp
47a7c4f4fe
yuzu: Add frontend settings for assembly shaders
Add settings for assembly shaders. Currently hidden to avoid users from
accidentally enabled them.
6 years ago
Fernando Sahmkow
4cff5dd194
OpenGL: Enable Debug Context and Synchronous debugging when graphics debugging is enabled.
This commit aims to help easing debugging of driver crashes without
having to modify existing code.
6 years ago
Morph
9a36d8600c
main: Log host system memory parameters
Logs both physical memory and swapfile sizes, this is useful for support.
6 years ago
Morph
b73f678ee8
frontend: Set minimum window size to 640x360 instead of 1280x720 ( #3413 )
6 years ago
James Rowe
1585981eec
Frontend: Remove tracking for context wrapper
6 years ago
bunnei
988e42a3f5
core: settings: Add a setting for time zone.
6 years ago
bunnei
551c61bf27
yuzu: game_list: Fix 'Open Save Data Location' for device saves.
6 years ago
FearlessTobi
9e5af4ad30
Menubar: fix mouse tracking bug
Co-Authored-By: Vitor K <vitor-k@users.noreply.github.com>
6 years ago
Vitor Kiguchi
dffcff9fec
Fix the mistake in the port and update the comment for clarity
6 years ago
Kewlan
a19c6317ef
Add Restore Defaults and Clear options to hotkeys
6 years ago
Fernando Sahmkow
5c9feaebb6
Clang Format.
6 years ago
Fernando Sahmkow
b8aef40c56
GPU: Add Fast GPU Time Option.
6 years ago
Ben Russell
bcd0444bb9
Update src/yuzu/main.cpp with missing const
Co-Authored-By: Mat M. <mathew1800@gmail.com>
6 years ago
Ben Russell
dd43d725c6
Dump RomFS command to include Updates
Patch the RomFS with the selected updates before dumping. Previously the resulting RomFS only contained data from the original title.
To dump the RomFS without updates the user can disable the update under Properties before choosing Dump RomFS.
6 years ago
Kewlan
8d917e14f8
Edit modifier_scale with the deadzone slider
6 years ago
Fernando Sahmkow
d2d4a6cbcf
Clang format.
6 years ago
Fernando Sahmkow
084ceb925a
UI: Replasce accurate GPU option for GPU Accuracy Level
6 years ago
Morph
91f1ffd283
Add a trailing separator to the string path
Fixes #3643
6 years ago
MerryMage
a3a12deecc
dynarmic: Add option to disable CPU JIT optimizations
6 years ago
FearlessTobi
e7664b7a4f
yuzu: Option to hide mouse on inactivity
Co-Authored-By: Vitor K <vitor-k@users.noreply.github.com>
6 years ago
Lioncash
e2d8be1ca2
General: Resolve warnings related to missing declarations
6 years ago
Lioncash
1c340c6efa
CMakeLists: Specify -Wextra on linux builds
Allows reporting more cases where logic errors may exist, such as
implicit fallthrough cases, etc.
We currently ignore unused parameters, since we currently have many
cases where this is intentional (virtual interfaces).
While we're at it, we can also tidy up any existing code that causes
warnings. This also uncovered a few bugs as well.
6 years ago
FearlessTobi
c2bf91156a
yuzu/main: Add better popup texts and remove duplicated actions
Makes popup texts more compact and clear and also links our quickstart guide now.
Also removes OnMenuSelectEmulatedDirectory from the File dropdown, as the action already exists in the Filesystem tab and provides better visual feedback there.
6 years ago
Kewlan
848d619aec
Place SL and SR in the right most column.
6 years ago