Browse Source
[core, qt] remove non-ascii from src code (#2779)
Done with `find src -type f -iname '*.md' -print0 | xargs -0 pcregrep --color='auto' -nr '[^\x00-\x7F]'`
Signed-off-by: lizzie <lizzie@eden-emu.dev>
Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/2779
Reviewed-by: crueter <crueter@eden-emu.dev>
Reviewed-by: MaranBr <maranbr@eden-emu.dev>
Co-authored-by: lizzie <lizzie@eden-emu.dev>
Co-committed-by: lizzie <lizzie@eden-emu.dev>
pull/2811/head
lizzie
2 months ago
committed by
crueter
No known key found for this signature in database
GPG Key ID: 425ACD2D4830EBC6
6 changed files with
11 additions and
5 deletions
-
src/android/app/src/main/res/values-it/strings.xml
-
src/common/fs/file.cpp
-
src/core/arm/nce/instructions.h
-
src/core/hle/service/nifm/nifm.cpp
-
src/core/internal_network/wifi_scanner.h
-
src/qt_common/config/shared_translation.cpp
|
|
|
@ -788,7 +788,7 @@ |
|
|
|
<string name="scaling_filter_bicubic">Bicubico</string> |
|
|
|
<string name="scaling_filter_gaussian">Gaussiano</string> |
|
|
|
<string name="scaling_filter_scale_force">ScaleForce</string> |
|
|
|
<string name="scaling_filter_fsr">AMD FidelityFX™️ Super Resolution</string> |
|
|
|
<string name="scaling_filter_fsr">AMD FidelityFX Super Resolution</string> |
|
|
|
<!-- Anti-Aliasing --> |
|
|
|
<string name="anti_aliasing_none">Nessuna</string> |
|
|
|
<string name="anti_aliasing_fxaa">FXAA</string> |
|
|
|
|
|
|
|
@ -1,3 +1,6 @@ |
|
|
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
// SPDX-FileCopyrightText: Copyright 2021 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
|
|
|
|
@ -1,4 +1,7 @@ |
|
|
|
// SPDX-FileCopyrightText: Copyright © 2020 Skyline Team and Contributors |
|
|
|
// SPDX-FileCopyrightText: Copyright 2025 Eden Emulator Project |
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later |
|
|
|
|
|
|
|
// SPDX-FileCopyrightText: Copyright 2020 Skyline Team and Contributors |
|
|
|
// SPDX-License-Identifier: MPL-2.0 |
|
|
|
|
|
|
|
#include "common/bit_field.h" |
|
|
|
|
|
|
|
@ -316,7 +316,7 @@ private: |
|
|
|
g_last_scan_results = scan_results; |
|
|
|
} |
|
|
|
|
|
|
|
// ❸ choose result code
|
|
|
|
// choose result code
|
|
|
|
const bool ok = !scan_results.empty(); |
|
|
|
Finish(ok ? ResultSuccess : ResultPendingConnection); |
|
|
|
} |
|
|
|
|
|
|
|
@ -16,7 +16,7 @@ struct ScanData { |
|
|
|
u8 quality{}; |
|
|
|
u32 flags{}; |
|
|
|
}; |
|
|
|
static_assert(sizeof(ScanData) <= 0x2C, "ScanData layout changed – update conversions!"); |
|
|
|
static_assert(sizeof(ScanData) <= 0x2C, "ScanData layout changed - update conversions!"); |
|
|
|
|
|
|
|
std::vector<Network::ScanData> ScanWifiNetworks(std::chrono::milliseconds deadline); |
|
|
|
} |
|
|
|
@ -553,7 +553,7 @@ std::unique_ptr<ComboboxTranslationMap> ComboboxEnumeration(QObject* parent) |
|
|
|
PAIR(ScalingFilter, Gaussian, tr("Gaussian")), |
|
|
|
PAIR(ScalingFilter, Lanczos, tr("Lanczos")), |
|
|
|
PAIR(ScalingFilter, ScaleForce, tr("ScaleForce")), |
|
|
|
PAIR(ScalingFilter, Fsr, tr("AMD FidelityFX™️ Super Resolution")), |
|
|
|
PAIR(ScalingFilter, Fsr, tr("AMD FidelityFX Super Resolution")), |
|
|
|
PAIR(ScalingFilter, Area, tr("Area")), |
|
|
|
PAIR(ScalingFilter, Mmpx, tr("MMPX")), |
|
|
|
PAIR(ScalingFilter, ZeroTangent, tr("Zero-Tangent")), |
|
|
|
|