Age | Commit message (Collapse) | Author |
|
Ported from https://github.com/citra-emu/citra/pull/3617.
|
|
Port citra-emu/citra#4914: "Fix to Windows sleep issues"
|
|
I missed this in my original PR (https://github.com/yuzu-emu/yuzu/pull/1886).
|
|
Co-Authored-By: Vitor K <vitor-k@users.noreply.github.com>
|
|
Co-Authored-By: Vitor K <vitor-k@users.noreply.github.com>
|
|
Fix compile error on Windows caused by #4877
Weird, I thought I saw this guard during the code review...
|
|
|
|
|
|
Port citra-emu/citra#4849: "Qt: Fixed behaviour of buttons by connecting functors to correct signals"
|
|
yuzu/CMakeLists: Remove qt5_wrap_ui macro usage
|
|
We can simply enable CMAKE_AUTOUIC and let CMake take care of handling
the UI code generation for targets.
As part of letting CMake automatically handle the header file parsing,
we must not name includes with "ui_*" unless they're related to the
output of the Qt UIC compiler. Because of this, we need to rename
ui_settings, given it would conflict with this restriction.
|
|
Following screens got fixes:
- Configure/Debug
- Configure/Input
|
|
yuzu/main: Make error messages within OnCoreError more localization-friendly
|
|
The JIT is mature enough that this setting can be removed, falling back
to Unicorn only on unsupported architectures. Any missing features from
Unicorn (of which there are extremely few), are mostly
developer-oriented, which most users don't care about.
Features should be coordinated with the JIT, not the interpreter,
anyhow.
|
|
Previously, a translated string was being appended onto another string
in a manner that doesn't allow the translator to control where the
appended text is placed. This can be a nuisance for languages where
grammar and text ordering differs from English.
We now append the strings via the format strings themselves, which
allows translators to reorder where the text will be placed.
|
|
Implement a new Texture Cache
|
|
yuzu: Move CPU Jit setting to Debug tab
|
|
A normal user shouldn't change this, as it will slow down the emulation and can lead to bugs or crashes. The renaming is done in order to prevent users from leaving this on without a way to turn it off from the UI.
|
|
|
|
|
|
|
|
This is more representative of what actually occurs, as web does support remote URLs which wouldn't need a romfs callback. This paves for easy future support of this with a call like 'OpenPageRemote' or similar.
|
|
loader, file_sys: Add support for parsing and loading KIP (Kernel Internal Process) files
|
|
core: Add detailed local reporting feature for development
|
|
|
|
yuzu/configure_input: Add missing space in window title
|
|
|
|
|
|
Added missing whitespace character between two words in the "Warning Missing Derivation Components" warning message box.
|
|
yuzu/configuration: Make all widgets and dialogs aware of language changes
|
|
|
|
video_core: Drop OpenGL core in favor of OpenGL compatibility
|
|
yuzu/CMakeLists: Pass compilation flags that make it more difficult to cause bugs in Qt code
|
|
To prepare for translation support, this makes all of the widgets
cognizant of the language change event that occurs whenever
installTranslator() is called and automatically retranslates their text
where necessary.
This is important as calling the backing UI's retranslateUi() is often
not enough, particularly in cases where we add our own strings that
aren't controlled by it. In that case we need to manually refresh the
strings ourselves.
|
|
yuzu/configuration: Make function naming consistent
|
|
Enforces the use of the proper URL resolution functions. e.g.
url = some_local_path_string;
should actually be:
url = QUrl::fromLocalPath(some_local_path_string);
etc.
This makes it harder to cause bugs when operating with both strings and
URLs at the same time.
|
|
core/telemetry_session: Remove usages of the global system accessor
|
|
Other overloads of start() are considerably much safer to use if we ever
need this in the future and need to pass arguments to the program, given
it contains separate parameters for the program path and the arguments
themselves, whereas this unsafe overload contains both as a single
string.
Given the alternatives are much safer, we can disable this.
|
|
Prevents hard-to-diagnose bugs from potentially occurring and requires
any type narrowing to be explicitly performed by our code.
|
|
|
|
yuzu/{profile_select, software_keyboard}: Tidy up interface
|
|
qt: Silence name collision warnings
|
|
yuzu/configuration/configure_graphics: Eliminate type narrowing in a connect call
|
|
game_list_worker: Use QFile over our own IOFile instance or std streams for the game list cache
|
|
|
|
yuzu/bootmanager: Minor interface tidying
|
|
yuzu: Remove unused birthday setting
|
|
We can make this message more meaningful by indicating the location the
screenshot has been saved to. We can also log out whenever a screenshot
could not be saved (e.g. due to filesystem permissions or some other
reason).
|
|
Treating it as a u16 can result in a sign-conversion warning when
performing arithmetic with it, as u16 promotes to an int when aritmetic
is performed on it, not unsigned int.
This also makes the interface more uniform, as the layout interface now
operates on u32 across the board.
|
|
This class contains non-trivial members, so we should default the
destructor's definition within the cpp file.
|