Hide the save/load indicator by default, add a (developer) setting. Also sneak in an adhoc server list bug fix.

Fixes #21523
This commit is contained in:
Henrik Rydgård
2026-04-06 10:04:09 -06:00
parent be2e96fb16
commit 8304d8622a
51 changed files with 135 additions and 92 deletions
+1
View File
@@ -263,6 +263,7 @@ static const ConfigSetting generalSettings[] = {
ConfigSetting("DumpFrames", SETTING(g_Config, bDumpFrames), false, CfgFlag::DEFAULT),
ConfigSetting("DumpVideoOutput", SETTING(g_Config, bDumpVideoOutput), false, CfgFlag::DEFAULT),
ConfigSetting("DumpAudio", SETTING(g_Config, bDumpAudio), false, CfgFlag::DEFAULT),
ConfigSetting("ShowSaveLoadIndicator", SETTING(g_Config, bShowSaveLoadIndicator), false, CfgFlag::DEFAULT),
ConfigSetting("SaveLoadResetsAVdumping", SETTING(g_Config, bSaveLoadResetsAVdumping), false, CfgFlag::DEFAULT),
ConfigSetting("StateSlot", SETTING(g_Config, iCurrentStateSlot), 0, CfgFlag::PER_GAME),
ConfigSetting("EnableStateUndo", SETTING(g_Config, bEnableStateUndo), &DefaultEnableStateUndo, CfgFlag::PER_GAME),
+1
View File
@@ -190,6 +190,7 @@ public:
bool bDumpVideoOutput;
bool bDumpAudio;
bool bSaveLoadResetsAVdumping;
bool bShowSaveLoadIndicator;
bool bEnableLogging;
bool bEnableFileLogging;
int iLogOutputTypes; // enum class LogOutput
+4 -2
View File
@@ -48,8 +48,10 @@ void ResetSecondsSinceLastGameSave() {
}
void ShowSaveLoadIndicator(bool save) {
g_OSD.Show(OSDType::STATUS_ICON, "", "", save ? "I_ROTATE_RIGHT" : "I_ROTATE_LEFT", 1.0f, "save_indicator");
g_OSD.SetFlags("save_indicator", (save ? OSDMessageFlags::SpinRight : OSDMessageFlags::SpinLeft) | OSDMessageFlags::Transparent);
if (g_Config.bShowSaveLoadIndicator) {
g_OSD.Show(OSDType::STATUS_ICON, "", "", save ? "I_ROTATE_RIGHT" : "I_ROTATE_LEFT", 1.0f, "save_indicator");
g_OSD.SetFlags("save_indicator", (save ? OSDMessageFlags::SpinRight : OSDMessageFlags::SpinLeft) | OSDMessageFlags::Transparent);
}
}
double SecondsSinceLastGameSave() {
+81 -89
View File
@@ -91,9 +91,9 @@ dependencies = [
[[package]]
name = "aws-lc-sys"
version = "0.39.0"
version = "0.39.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fa7e52a4c5c547c741610a2c6f123f3881e409b714cd27e6798ef020c514f0a"
checksum = "83a25cf98105baa966497416dbd42565ce3a8cf8dbfd59803ec9ad46f3126399"
dependencies = [
"cc",
"cmake",
@@ -139,9 +139,9 @@ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
[[package]]
name = "cc"
version = "1.2.57"
version = "1.2.59"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
checksum = "b7a4d3ec6524d28a329fc53654bbadc9bdd7b0431f5d65f1a56ffb28a1ee5283"
dependencies = [
"find-msvc-tools",
"jobserver",
@@ -234,9 +234,9 @@ dependencies = [
[[package]]
name = "cmake"
version = "0.1.57"
version = "0.1.58"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
dependencies = [
"cc",
]
@@ -354,9 +354,9 @@ dependencies = [
[[package]]
name = "fastrand"
version = "2.3.0"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
checksum = "a043dc74da1e37d6afe657061213aa6f425f855399a11d3463c6ecccc4dfda1f"
[[package]]
name = "find-msvc-tools"
@@ -577,9 +577,9 @@ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
[[package]]
name = "hyper"
version = "1.8.1"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
dependencies = [
"atomic-waker",
"bytes",
@@ -591,7 +591,6 @@ dependencies = [
"httparse",
"itoa",
"pin-project-lite",
"pin-utils",
"smallvec",
"tokio",
"want",
@@ -640,12 +639,13 @@ dependencies = [
[[package]]
name = "icu_collections"
version = "2.1.1"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
dependencies = [
"displaydoc",
"potential_utf",
"utf8_iter",
"yoke",
"zerofrom",
"zerovec",
@@ -653,9 +653,9 @@ dependencies = [
[[package]]
name = "icu_locale_core"
version = "2.1.1"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
dependencies = [
"displaydoc",
"litemap",
@@ -666,9 +666,9 @@ dependencies = [
[[package]]
name = "icu_normalizer"
version = "2.1.1"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
dependencies = [
"icu_collections",
"icu_normalizer_data",
@@ -680,15 +680,15 @@ dependencies = [
[[package]]
name = "icu_normalizer_data"
version = "2.1.1"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
[[package]]
name = "icu_properties"
version = "2.1.2"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
dependencies = [
"icu_collections",
"icu_locale_core",
@@ -700,15 +700,15 @@ dependencies = [
[[package]]
name = "icu_properties_data"
version = "2.1.2"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
[[package]]
name = "icu_provider"
version = "2.1.1"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
dependencies = [
"displaydoc",
"icu_locale_core",
@@ -748,9 +748,9 @@ dependencies = [
[[package]]
name = "indexmap"
version = "2.13.0"
version = "2.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff"
dependencies = [
"equivalent",
"hashbrown 0.16.1",
@@ -766,9 +766,9 @@ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
[[package]]
name = "iri-string"
version = "0.7.11"
version = "0.7.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d8e7418f59cc01c88316161279a7f665217ae316b388e58a0d10e29f54f1e5eb"
checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20"
dependencies = [
"memchr",
"serde",
@@ -842,10 +842,12 @@ dependencies = [
[[package]]
name = "js-sys"
version = "0.3.91"
version = "0.3.94"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9"
dependencies = [
"cfg-if",
"futures-util",
"once_cell",
"wasm-bindgen",
]
@@ -871,9 +873,9 @@ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
[[package]]
name = "libc"
version = "0.2.183"
version = "0.2.184"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
checksum = "48f5d2a454e16a5ea0f4ced81bd44e4cfc7bd3a507b61887c99fd3538b28e4af"
[[package]]
name = "linux-raw-sys"
@@ -883,9 +885,9 @@ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
[[package]]
name = "litemap"
version = "0.8.1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
[[package]]
name = "log"
@@ -931,9 +933,9 @@ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
[[package]]
name = "mio"
version = "1.1.1"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
dependencies = [
"libc",
"wasi",
@@ -1041,12 +1043,6 @@ version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "pkg-config"
version = "0.3.32"
@@ -1055,9 +1051,9 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
[[package]]
name = "potential_utf"
version = "0.1.4"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
dependencies = [
"zerovec",
]
@@ -1283,9 +1279,9 @@ dependencies = [
[[package]]
name = "rustc-hash"
version = "2.1.1"
version = "2.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
[[package]]
name = "rustix"
@@ -1424,9 +1420,9 @@ dependencies = [
[[package]]
name = "semver"
version = "1.0.27"
version = "1.0.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
[[package]]
name = "serde"
@@ -1641,9 +1637,9 @@ dependencies = [
[[package]]
name = "tinystr"
version = "0.8.2"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
dependencies = [
"displaydoc",
"zerovec",
@@ -1666,9 +1662,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
version = "1.50.0"
version = "1.51.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
checksum = "2bd1c4c0fc4a7ab90fc15ef6daaa3ec3b893f004f915f2392557ed23237820cd"
dependencies = [
"bytes",
"libc",
@@ -1869,9 +1865,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen"
version = "0.2.114"
version = "0.2.117"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0"
dependencies = [
"cfg-if",
"once_cell",
@@ -1882,23 +1878,19 @@ dependencies = [
[[package]]
name = "wasm-bindgen-futures"
version = "0.4.64"
version = "0.4.67"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
checksum = "03623de6905b7206edd0a75f69f747f134b7f0a2323392d664448bf2d3c5d87e"
dependencies = [
"cfg-if",
"futures-util",
"js-sys",
"once_cell",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.114"
version = "0.2.117"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
@@ -1906,9 +1898,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.114"
version = "0.2.117"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2"
dependencies = [
"bumpalo",
"proc-macro2",
@@ -1919,9 +1911,9 @@ dependencies = [
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.114"
version = "0.2.117"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b"
dependencies = [
"unicode-ident",
]
@@ -2021,9 +2013,9 @@ dependencies = [
[[package]]
name = "web-sys"
version = "0.3.91"
version = "0.3.94"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a"
dependencies = [
"js-sys",
"wasm-bindgen",
@@ -2453,9 +2445,9 @@ dependencies = [
[[package]]
name = "writeable"
version = "0.6.2"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
[[package]]
name = "x11-clipboard"
@@ -2496,9 +2488,9 @@ checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
[[package]]
name = "yoke"
version = "0.8.1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
dependencies = [
"stable_deref_trait",
"yoke-derive",
@@ -2507,9 +2499,9 @@ dependencies = [
[[package]]
name = "yoke-derive"
version = "0.8.1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
dependencies = [
"proc-macro2",
"quote",
@@ -2519,18 +2511,18 @@ dependencies = [
[[package]]
name = "zerocopy"
version = "0.8.47"
version = "0.8.48"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.8.47"
version = "0.8.48"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
dependencies = [
"proc-macro2",
"quote",
@@ -2539,18 +2531,18 @@ dependencies = [
[[package]]
name = "zerofrom"
version = "0.1.6"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
dependencies = [
"zerofrom-derive",
]
[[package]]
name = "zerofrom-derive"
version = "0.1.6"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
dependencies = [
"proc-macro2",
"quote",
@@ -2566,9 +2558,9 @@ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
[[package]]
name = "zerotrie"
version = "0.2.3"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
dependencies = [
"displaydoc",
"yoke",
@@ -2577,9 +2569,9 @@ dependencies = [
[[package]]
name = "zerovec"
version = "0.11.5"
version = "0.11.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
dependencies = [
"yoke",
"zerofrom",
@@ -2588,9 +2580,9 @@ dependencies = [
[[package]]
name = "zerovec-derive"
version = "0.11.2"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
dependencies = [
"proc-macro2",
"quote",
+1 -1
View File
@@ -306,7 +306,7 @@ void AdhocServerInfoScreen::CreatePopupContents(UI::ViewGroup *parent) {
std::string title = game.name + " - " + ApplySafeSubstitutions(ni->T("players: %1"), game.usercount) + " " + ApplySafeSubstitutions(ni->T("groups: %1"), (int)game.groups.size());
CollapsibleSection *gameSection = content->Add(new CollapsibleSection(title));
for (const AdhocGroup &group : game.groups) {
if (group.usercount == 1 && group.name == "Groupless") {
if (group.usercount >= 1 && group.name == "Groupless") {
gameSection->Add(new TextView(" " + ApplySafeSubstitutions(ni->T("Players waiting: %1"), group.usercount)))->SetTextSize(TextSize::Small);
continue;
}
+2
View File
@@ -198,6 +198,8 @@ void DeveloperToolsScreen::CreateGeneralTab(UI::LinearLayout *list) {
screenManager()->push(new GPIGPOScreen(dev->T("GPI/GPO switches/LEDs")));
});
list->Add(new CheckBox(&g_Config.bShowSaveLoadIndicator, dev->T("Show indicator when saving/loading")));
#if PPSSPP_PLATFORM(ANDROID)
static const char *framerateModes[] = { "Default", "Request 60 Hz", "Force 60Hz" };
PopupMultiChoice *framerateMode = list->Add(new PopupMultiChoice(&g_Config.iDisplayFramerateMode, gr->T("Framerate mode"), framerateModes, 0, ARRAY_SIZE(framerateModes), I18NCat::GRAPHICS, screenManager()));
+1
View File
@@ -375,6 +375,7 @@ Save new textures = ‎حفظ الرسم الجديد
Shader Viewer = ‎مستعرض الرسوميات
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = ‎أظهر قائمة المطور
Show indicator when saving/loading = إظهار المؤشر عند الحفظ/التحميل # AI translated
Slow (smooth) = Slow (smooth)
Stats = ‎الحالات
System Information = ‎معلومات النظام
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Yeni toxumaları qoru
Shader Viewer = Kölgələyicini Göstərən
Show GPO LEDs = GPO LED'lərini Göstər
Show in-game developer menu = Gəliştirici Seçməsini Göstər
Show indicator when saving/loading = Saxlama/yükləmə zamanı göstəricini göstər # AI translated
Slow (smooth) = Yavaş (axıcı)
Stats = Durumlar
System Information = Sistem bilgisi
+1
View File
@@ -369,6 +369,7 @@ Save new textures = Save new textures
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Show developer menu
Show indicator when saving/loading = Паказаць індыкатар пры захаванні/загрузка # AI translated
Slow (smooth) = Slow (smooth)
Stats = Статыстыка
System Information = Інфармацыя пра сістэму
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Save new textures
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Покажи developer меню
Show indicator when saving/loading = Показване на индикатора при запис/зареждане # AI translated
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = Системна информация
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Desa les noves textures
Shader Viewer = Visualitzador de shader
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Mostra el menú de desenvolupament
Show indicator when saving/loading = Mostrar indicador en guardar/carregar # AI translated
Slow (smooth) = Slow (smooth)
Stats = Estadístiques
System Information = Informació del sistema
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Save new textures
Shader Viewer = Prohlížeč shaderů
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Zobrazit nabídku pro vývojáře
Show indicator when saving/loading = Zobrazit indikátor při ukládání/načítání # AI translated
Slow (smooth) = Slow (smooth)
Stats = Statistiky
System Information = Informace o systému
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Gem nye textures
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Vis udviklermenu
Show indicator when saving/loading = Vis indikator ved gemme/indlæse # AI translated
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = System information
+1
View File
@@ -366,6 +366,7 @@ Save new textures = Neue Texturen speichern
Shader Viewer = Schattierer-Anzeige
Show GPO LEDs = GPO-LEDs anzeigen
Show in-game developer menu = Entwicklermenü anzeigen
Show indicator when saving/loading = Indikator beim Speichern/Laden anzeigen # AI translated
Slow (smooth) = Slow (smooth)
Stats = Statistiken
System Information = Systeminformationen
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Save new textures
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Show developer menu
Show indicator when saving/loading = Tampilkan indikator saat menyimpan/memuat # AI translated
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = Pempakitan to sistem dipake
+1
View File
@@ -393,6 +393,7 @@ Save new textures = Save new textures
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Show developer menu
Show indicator when saving/loading = Show indicator when saving/loading
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = System information
+1
View File
@@ -370,6 +370,7 @@ Save new textures = Guardar nuevas texturas
Shader Viewer = Visor de shader
Show GPO LEDs = Mostrar LEDs GPO
Show in-game developer menu = Mostrar menú de desarrollo
Show indicator when saving/loading = Mostrar indicador al guardar/cargar # AI translated
Slow (smooth) = Lento (fluido)
Stats = Estadísticas
System Information = Información de sistema
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Guardar nuevas texturas
Shader Viewer = Visor de shader
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Mostrar menú de desarrollador
Show indicator when saving/loading = Mostrar indicador al guardar/cargar # AI translated
Slow (smooth) = Slow (smooth)
Stats = Estadísticas
System Information = Información del sistema
+1
View File
@@ -367,6 +367,7 @@ Save new textures = ذخیره بافت جدید
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = نمایش منو توسعه دهنده
Show indicator when saving/loading = نمایش نشانگر هنگام ذخیره‌سازی/بارگیری # AI translated
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = ‎اطلاعات سیستم
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Save new textures
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Show developer menu
Show indicator when saving/loading = Näytä indikaattori tallennettaessa/ladattaessa # AI translated
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = System information
+1
View File
@@ -393,6 +393,7 @@ Save new textures = Sauvegarder les nouvelles textures
Shader Viewer = Visionneur de shader
Show GPO LEDs = Afficher les voyants GPO
Show in-game developer menu = Montrer le menu développeur "MenuDev"
Show indicator when saving/loading = Afficher l'indicateur lors de l'enregistrement/chargement # AI translated
Slow (smooth) = Lent (fluide)
Stats = Statistiques
System Information = Informations système
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Save new textures
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Mostrar menú de desenrolo
Show indicator when saving/loading = Mostrar indicador ao gardar/cargar # AI translated
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = Información do sistema
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Αποθήκευση νέων υφών
Shader Viewer = Προβολέας Shader
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Εμφάνιση μενού προγραμματιστών
Show indicator when saving/loading = Εμφάνιση δείκτη κατά την αποθήκευση/φόρτωση # AI translated
Slow (smooth) = Slow (smooth)
Stats = Στατιστικά
System Information = Πληροφορίες Συστήματος
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Save new textures
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Show developer menu
Show indicator when saving/loading = הראה אינדיקטור בעת שמירה/טעינה # AI translated
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = מידע על המערכת
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Save new textures
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Show developer menu
Show indicator when saving/loading = הראה אינדיקטור בעת שמירה/טעינה # AI translated
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = תכרעמה לע עדימ
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Spremi nove teksture
Shader Viewer = Pregled sjenčanja
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Prikaži developer izbornik
Show indicator when saving/loading = Prikaži indikator pri spremanju/učitavanju # AI translated
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = System informacija
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Új textúrák mentése
Shader Viewer = Shader megjelenítő
Show GPO LEDs = GPO LED-ek megjelenítése
Show in-game developer menu = Fejlesztői menü megjelenítése
Show indicator when saving/loading = Jelző megjelenítése mentés/töltés közben # AI translated
Slow (smooth) = Slow (smooth)
Stats = Statisztikák
System Information = Rendszerinformáció
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Simpan tekstur baru
Shader Viewer = Penampil shader
Show GPO LEDs = Tampilkan LED GPO
Show in-game developer menu = Tampilkan menu pengembang
Show indicator when saving/loading = Tampilkan indikator saat menyimpan/memuat # AI translated
Slow (smooth) = Lambat (lancar)
Stats = Statistik
System Information = Informasi sistem
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Salva nuove texture
Shader Viewer = Visualizzatore shader
Show GPO LEDs = Mostra LED GPO
Show in-game developer menu = Mostra Menu Sviluppatore
Show indicator when saving/loading = Mostra indicatore durante salvataggio/caricamento # AI translated
Slow (smooth) = Lento (fluido)
Stats = Statistiche
System Information = Informazioni Sistema
+1
View File
@@ -367,6 +367,7 @@ Save new textures = 新しいテクスチャを保存する
Shader Viewer = シェーダビューワ
Show GPO LEDs = GPO LEDを表示する
Show in-game developer menu = 開発者向けメニューを表示する
Show indicator when saving/loading = 保存/読み込み時にインジケータを表示 # AI translated
Slow (smooth) = 遅い(スムーズ)
Stats = 状況
System Information = システム情報
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Save new textures
Shader Viewer = Tampilan shader
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Tampilno menu pengembang
Show indicator when saving/loading = Tampilake indikator nalika nyimpen/ngundhuh # AI translated
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = Informasi Sistem
+1
View File
@@ -369,6 +369,7 @@ Save new textures = 새로운 텍스처 저장
Shader Viewer = 셰이더 뷰어
Show GPO LEDs = GPO LED 표시
Show in-game developer menu = 개발자 메뉴 표시
Show indicator when saving/loading = 저장/로드 시 인디케이터 표시 # AI translated
Slow (smooth) = 느림 (부드러움)
Stats = 상태
System Information = 시스템 정보
+1
View File
@@ -383,6 +383,7 @@ Save new textures = Save new textures
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Show developer menu
Show indicator when saving/loading = Nîşan nîşan dide dema hilkişîn/berçavkirinê # AI translated
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = System information
+1
View File
@@ -367,6 +367,7 @@ Save new textures = ບັນທຶກພື້ນຜິວໃໝ່
Shader Viewer = ມຸມມອງການປັບໄລ່ເສດສີ
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = ສະແດງເມນູສຳລັບນັກພັດທະນາ
Show indicator when saving/loading = ສະແດງສັງຄົມໃນການເກັບ/ໂອນ # AI translated
Slow (smooth) = Slow (smooth)
Stats = ສະຖິຕິ
System Information = ຂໍ້ມູນຂອງລະບົບ
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Save new textures
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Rodyti kūrėjų meniu
Show indicator when saving/loading = Rodyti indikatorių, kai išsaugoma/loading # AI translated
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = Sistemos informacija
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Save new textures
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Papar menu pembangun
Show indicator when saving/loading = Tunjukkan petunjuk semasa menyimpan/memuat # AI translated
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = Maklumat sistem
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Nieuwe textures opslaan
Shader Viewer = Shader weergeven
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Ontwikkelaarsmenu weergeven
Show indicator when saving/loading = Toon indicator bij opslaan/laden # AI translated
Slow (smooth) = Slow (smooth)
Stats = Statistieken
System Information = Systeeminformatie
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Save new textures
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Show developer menu
Show indicator when saving/loading = Vis indikator når du lagrer/laster # AI translated
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = Systeminformasjon
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Zapisz nową teksturę
Shader Viewer = Podgląd Shaderów
Show GPO LEDs = Pokaż piny LED GPO
Show in-game developer menu = Pokaż przycisk menu dewelopera
Show indicator when saving/loading = Pokaż wskaźnik podczas zapisywania/ładowania # AI translated
Slow (smooth) = Wolna (płynna)
Stats = Statystyki
System Information = Informacje o systemie
+1
View File
@@ -393,6 +393,7 @@ Save new textures = Salvar novas texturas
Shader Viewer = Visualizador dos shaders
Show GPO LEDs = Mostrar os LEDS do GPO
Show in-game developer menu = Mostrar menu do desenvolvedor
Show indicator when saving/loading = Mostrar indicador ao salvar/carregar # AI translated
Slow (smooth) = Lento (suave)
Stats = Estatísticas
System Information = Informação do sistema
+1
View File
@@ -393,6 +393,7 @@ Save new textures = Guardar novas texturas
Shader Viewer = Visualizador de shaders
Show GPO LEDs = Mostrar LEDs GPO
Show in-game developer menu = Mostrar menu de desenvolvedor
Show indicator when saving/loading = Mostrar indicador ao guardar/carregar # AI translated
Slow (smooth) = Lento (mais suave)
Stats = Estatísticas
System Information = Informação do sistema
+1
View File
@@ -368,6 +368,7 @@ Save new textures = Save new textures
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Show developer menu
Show indicator when saving/loading = Afișați indicatorul atunci când salvați/încărcați # AI translated
Slow (smooth) = Slow (smooth)
Stats = Stats
System Information = System information
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Сохранять новые текстуры
Shader Viewer = Просмотрщик шейдеров
Show GPO LEDs = Показывать индикаторы GPO
Show in-game developer menu = Показывать меню разработчика в игре
Show indicator when saving/loading = Показать индикатор при сохранении/загрузке # AI translated
Slow (smooth) = Медленно (плавно)
Stats = Статистика
System Information = Информация о системе
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Spara nya texturer
Shader Viewer = Shader-visare
Show GPO LEDs = Visa GPO LEDs
Show in-game developer menu = Visa utvecklarmenyn
Show indicator when saving/loading = Visa indikator vid sparande/laddning # AI translated
Slow (smooth) = Långsam (inga hack)
Stats = Statistik
System Information = Systeminformation
+1
View File
@@ -368,6 +368,7 @@ Save new textures = I-save ang mga bagong texture
Shader Viewer = Shader viewer
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Ipakita ang Developer Menu
Show indicator when saving/loading = Кашфи нишона ҳангоми захира/боргирӣ # AI translated
Slow (smooth) = Slow (smooth)
Stats = Istatistik
System Information = Impormasyon tungkol sa sistema
+1
View File
@@ -381,6 +381,7 @@ Select the file path for the trace = เลือกเส้นทางขอ
Shader Viewer = มุมมองการปรับเฉดแสงสี
Show GPO LEDs = แสดงค่า GPO LEDs
Show in-game developer menu = แสดงเมนูสำหรับนักพัฒนา
Show indicator when saving/loading = แสดงตัวบ่งชี้เมื่อบันทึก/โหลด # AI translated
Slow (smooth) = ช้า (ลื่นไหล)
Stats = สถิติ
Storage capacity = ความจุในการเก็บข้อมูล
+1
View File
@@ -369,6 +369,7 @@ Save new textures = Yeni Dokuları Kaydet
Shader Viewer = Gölgelendirici Görüntüleyici
Show GPO LEDs = GPO LEDLERİ Göster
Show in-game developer menu = Geliştirici Menüsünü Göster
Show indicator when saving/loading = Kaydetme/yükleme sırasında göstergeyi göster # AI translated
Slow (smooth) = Yavaş (pürüzsüz)
Stats = İstatistikler
System Information = Sistem Bilgisi
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Зберегти нові текстури
Shader Viewer = Переглядач шейдеру
Show GPO LEDs = Показати GPO LEDs
Show in-game developer menu = Показати меню розробника
Show indicator when saving/loading = Показати індикатор під час збереження/завантаження # AI translated
Slow (smooth) = Повільно (плавно)
Stats = Статистика
System Information = Інформація про систему
+1
View File
@@ -367,6 +367,7 @@ Save new textures = Lưu file textures mới
Shader Viewer = Xem trước đỗ bóng
Show GPO LEDs = Show GPO LEDs
Show in-game developer menu = Hiện menu NPH
Show indicator when saving/loading = Hiện chỉ báo khi lưu/tải # AI translated
Slow (smooth) = Slow (smooth)
Stats = Thống kê
System Information = Thông tin hệ thống
+1
View File
@@ -367,6 +367,7 @@ Save new textures = 保存新纹理
Shader Viewer = 着色器查看器
Show GPO LEDs = 显示GPO指示灯
Show in-game developer menu = 显示开发者菜单
Show indicator when saving/loading = 保存/加载时显示指示器 # AI translated
Slow (smooth) = 缓慢(流畅)
Stats = 统计数据
System Information = 系统信息
+1
View File
@@ -367,6 +367,7 @@ Save new textures = 儲存新紋理
Shader Viewer = 著色器檢視器
Show GPO LEDs = 顯示 GPO LED
Show in-game developer menu = 顯示開發人員選單
Show indicator when saving/loading = 保存/加載時顯示指示器 # AI translated
Slow (smooth) = 緩慢(流暢)
Stats = 統計資料
System Information = 系統資訊