mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Merge pull request #17765 from hrydgard/rapid-fire-interval
Make the rapid-fire interval configurable
This commit is contained in:
commit
95c5550071
50 changed files with 116 additions and 5 deletions
|
@ -773,6 +773,7 @@ static const ConfigSetting controlSettings[] = {
|
|||
ConfigSetting("MouseSmoothing", &g_Config.fMouseSmoothing, 0.9f, CfgFlag::PER_GAME),
|
||||
|
||||
ConfigSetting("SystemControls", &g_Config.bSystemControls, true, CfgFlag::DEFAULT),
|
||||
ConfigSetting("RapidFileInterval", &g_Config.iRapidFireInterval, 5, CfgFlag::DEFAULT),
|
||||
};
|
||||
|
||||
static const ConfigSetting networkSettings[] = {
|
||||
|
|
|
@ -386,6 +386,7 @@ public:
|
|||
float fMouseSmoothing;
|
||||
|
||||
bool bSystemControls;
|
||||
int iRapidFireInterval;
|
||||
|
||||
// Use the hardware scaler to scale up the image to save fillrate. Similar to Windows' window size, really.
|
||||
int iAndroidHwScale; // 0 = device resolution. 1 = 480x272 (extended to correct aspect), 2 = 960x544 etc.
|
||||
|
|
|
@ -103,6 +103,8 @@ static u8 vibrationRightDropout = 160;
|
|||
// Not related to sceCtrl*RapidFire(), although it may do the same thing.
|
||||
static bool emuRapidFire = false;
|
||||
static u32 emuRapidFireFrames = 0;
|
||||
static bool emuRapidFireToggle = true;
|
||||
static u32 emuRapidFireInterval = 5;
|
||||
|
||||
// These buttons are not affected by rapid fire (neither is analog.)
|
||||
const u32 CTRL_EMU_RAPIDFIRE_MASK = CTRL_UP | CTRL_DOWN | CTRL_LEFT | CTRL_RIGHT;
|
||||
|
@ -113,7 +115,7 @@ static void __CtrlUpdateLatch()
|
|||
u64 t = CoreTiming::GetGlobalTimeUs();
|
||||
|
||||
u32 buttons = ctrlCurrent.buttons;
|
||||
if (emuRapidFire && (emuRapidFireFrames % 10) < 5)
|
||||
if (emuRapidFire && emuRapidFireToggle)
|
||||
buttons &= CTRL_EMU_RAPIDFIRE_MASK;
|
||||
|
||||
ReplayApplyCtrl(buttons, ctrlCurrent.analog, t);
|
||||
|
@ -173,6 +175,19 @@ u32 __CtrlPeekButtons()
|
|||
return ctrlCurrent.buttons;
|
||||
}
|
||||
|
||||
u32 __CtrlPeekButtonsVisual()
|
||||
{
|
||||
u32 buttons;
|
||||
{
|
||||
std::lock_guard<std::mutex> guard(ctrlMutex);
|
||||
buttons = ctrlCurrent.buttons;
|
||||
}
|
||||
|
||||
if (emuRapidFire && emuRapidFireToggle)
|
||||
buttons &= CTRL_EMU_RAPIDFIRE_MASK;
|
||||
return buttons;
|
||||
}
|
||||
|
||||
void __CtrlPeekAnalog(int stick, float *x, float *y)
|
||||
{
|
||||
std::lock_guard<std::mutex> guard(ctrlMutex);
|
||||
|
@ -206,9 +221,11 @@ void __CtrlSetAnalogXY(int stick, float x, float y)
|
|||
ctrlCurrent.analog[stick][CTRL_ANALOG_Y] = scaledY;
|
||||
}
|
||||
|
||||
void __CtrlSetRapidFire(bool state)
|
||||
void __CtrlSetRapidFire(bool state, int interval)
|
||||
{
|
||||
emuRapidFire = state;
|
||||
emuRapidFireToggle = true;
|
||||
emuRapidFireInterval = interval;
|
||||
}
|
||||
|
||||
bool __CtrlGetRapidFire()
|
||||
|
@ -298,6 +315,10 @@ retry:
|
|||
static void __CtrlVblank()
|
||||
{
|
||||
emuRapidFireFrames++;
|
||||
if (emuRapidFireFrames >= emuRapidFireInterval) {
|
||||
emuRapidFireFrames = 0;
|
||||
emuRapidFireToggle = !emuRapidFireToggle;
|
||||
}
|
||||
|
||||
// Reduce gamepad Vibration by set % each frame
|
||||
leftVibration *= (float)vibrationLeftDropout / 256.0f;
|
||||
|
|
|
@ -73,11 +73,12 @@ void __CtrlUpdateButtons(u32 bitsToSet, u32 bitsToClear);
|
|||
void __CtrlSetAnalogXY(int stick, float x, float y);
|
||||
|
||||
// Call this to enable rapid-fire. This will cause buttons other than arrows to alternate.
|
||||
void __CtrlSetRapidFire(bool state);
|
||||
void __CtrlSetRapidFire(bool state, int interval);
|
||||
bool __CtrlGetRapidFire();
|
||||
|
||||
// For use by internal UI like MsgDialog
|
||||
u32 __CtrlPeekButtons();
|
||||
u32 __CtrlPeekButtonsVisual(); // also incorporates rapid-fire
|
||||
void __CtrlPeekAnalog(int stick, float *x, float *y);
|
||||
u32 __CtrlReadLatch();
|
||||
|
||||
|
|
|
@ -764,7 +764,7 @@ void EmuScreen::onVKey(int virtualKeyCode, bool down) {
|
|||
}
|
||||
break;
|
||||
case VIRTKEY_RAPID_FIRE:
|
||||
__CtrlSetRapidFire(down);
|
||||
__CtrlSetRapidFire(down, g_Config.iRapidFireInterval);
|
||||
break;
|
||||
case VIRTKEY_MUTE_TOGGLE:
|
||||
if (down)
|
||||
|
|
|
@ -720,6 +720,7 @@ void GameSettingsScreen::CreateControlsSettings(UI::ViewGroup *controlsSettings)
|
|||
settingInfo_->Show(co->T("AnalogLimiter Tip", "When the analog limiter button is pressed"), e.v);
|
||||
return UI::EVENT_CONTINUE;
|
||||
});
|
||||
controlsSettings->Add(new PopupSliderChoice(&g_Config.iRapidFireInterval, 1, 10, 5, "Rapid fire interval", screenManager(), "frames"));
|
||||
#if defined(USING_WIN_UI) || defined(SDL)
|
||||
controlsSettings->Add(new ItemHeader(co->T("Mouse", "Mouse settings")));
|
||||
CheckBox *mouseControl = controlsSettings->Add(new CheckBox(&g_Config.bMouseControl, co->T("Use Mouse Control")));
|
||||
|
|
|
@ -264,7 +264,7 @@ void CustomButton::Update() {
|
|||
}
|
||||
|
||||
bool PSPButton::IsDown() {
|
||||
return (__CtrlPeekButtons() & pspButtonBit_) != 0;
|
||||
return (__CtrlPeekButtonsVisual() & pspButtonBit_) != 0;
|
||||
}
|
||||
|
||||
PSPDpad::PSPDpad(ImageID arrowIndex, const char *key, ImageID arrowDownIndex, ImageID overlayIndex, float scale, float spacing, UI::LayoutParams *layoutParams)
|
||||
|
|
|
@ -98,6 +98,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -126,6 +127,7 @@ OnScreen = تحكم لمس الشاشة
|
|||
Portrait = طولية
|
||||
Portrait Reversed = طولية معكوسة
|
||||
PSP Action Buttons = PSP أزرار الأفعال الخاصة بـ
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Ekran Kontrolları Açıq
|
|||
Portrait = Portrait
|
||||
Portrait Reversed = Portrait reversed
|
||||
PSP Action Buttons = PSP action buttons
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Управление с докосване на екрана
|
|||
Portrait = Портрет
|
||||
Portrait Reversed = Обърнат портрет
|
||||
PSP Action Buttons = PSP action buttons
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Desactivar mov. diagonal
|
|||
Double tap = Doble toc
|
||||
Enable gesture control = Habilitar gestos
|
||||
Enable standard shortcut keys = Habilitar les tecles de drecera
|
||||
frames = frames
|
||||
Gesture = Gestos
|
||||
Gesture mapping = Configuració de gestos
|
||||
Glowing borders = Vores brillants
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Controls tàctils a la pantalla
|
|||
Portrait = Vertical
|
||||
Portrait Reversed = Vertical invertit
|
||||
PSP Action Buttons = Botons d'acció
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Mode repetició
|
||||
Reset to defaults = Restaurar paràmetres
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Dotykové ovládání na obrazovce
|
|||
Portrait = Na výšku
|
||||
Portrait Reversed = Na výšku obráceně
|
||||
PSP Action Buttons = Tlačítka činností PSP
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Touch billedskærmsknapper
|
|||
Portrait = Portræt
|
||||
Portrait Reversed = Omvendt portræt
|
||||
PSP Action Buttons = PSP action knapper
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Deaktiviere Diagonale Eingabe
|
|||
Double tap = Doppelklick
|
||||
Enable gesture control = Aktiviere Gestenkontrolle
|
||||
Enable standard shortcut keys = Aktiviere standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Geste
|
||||
Gesture mapping = Gesten mapping
|
||||
Glowing borders = Leuchtende Ränder
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Touch Bildschirmtasten
|
|||
Portrait = Hochformat
|
||||
Portrait Reversed = Hochformat umgekehrt
|
||||
PSP Action Buttons = PSP Aktionstasten
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Tobolo'na jo layar sentu
|
|||
Portrait = Portrait
|
||||
Portrait Reversed = Portrait reversed
|
||||
PSP Action Buttons = PSP action buttons
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -114,6 +114,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -142,6 +143,7 @@ OnScreen = On-screen touch controls
|
|||
Portrait = Portrait
|
||||
Portrait Reversed = Portrait reversed
|
||||
PSP Action Buttons = PSP action buttons
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Reset to defaults = Reset to defaults
|
||||
Screen Rotation = Screen rotation
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Deshabilitar mov. diagonal
|
|||
Double tap = Doble toque
|
||||
Enable gesture control = Habilitar gestos
|
||||
Enable standard shortcut keys = Habilitar teclas de atajo
|
||||
frames = frames
|
||||
Gesture = Gestos
|
||||
Gesture mapping = Ajustes de gestos
|
||||
Glowing borders = Bordes brillantes
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Controles táctiles en pantalla
|
|||
Portrait = Vertical
|
||||
Portrait Reversed = Vertical invertido
|
||||
PSP Action Buttons = Botones de acción
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Entrada raw
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Restaurar ajustes
|
||||
|
|
|
@ -91,6 +91,7 @@ Disable diagonal input = Deshabilitar mov. diagonal
|
|||
Double tap = Doble toque
|
||||
Enable gesture control = Habilitar gestos
|
||||
Enable standard shortcut keys = Habilitar teclas de atajo
|
||||
frames = frames
|
||||
Gesture = Gestos
|
||||
Gesture mapping = Configurac. de gestos
|
||||
Glowing borders = Bordes brillantes
|
||||
|
@ -119,6 +120,7 @@ OnScreen = Controles en pantalla
|
|||
Portrait = Retrato
|
||||
Portrait Reversed = Retrato invertido
|
||||
PSP Action Buttons = Botones de acción PSP
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Restaurar config.
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = نمایش کنترل های لمسی
|
|||
Portrait = عمودی
|
||||
Portrait Reversed = عمودی وارونه
|
||||
PSP Action Buttons = اکشن دکمه های
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = ورودی راو
|
||||
Repeat mode = حالت تکرار
|
||||
Reset to defaults = ریست کردن پیشفرض
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Kosketusnäytön kontrollit
|
|||
Portrait = Portrait
|
||||
Portrait Reversed = Portrait reversed
|
||||
PSP Action Buttons = PSP action buttons
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Bordures lumineuses
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Commandes tactiles
|
|||
Portrait = Portrait
|
||||
Portrait Reversed = Portrait inversé
|
||||
PSP Action Buttons = Boutons d'action
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Controis táctiles en pantalla
|
|||
Portrait = Vertical
|
||||
Portrait Reversed = Vertical invertido
|
||||
PSP Action Buttons = Botóns de acción
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Φωτιζόμενα σύνορα
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Χειριστήριο Οθόνης Αφής
|
|||
Portrait = Πορτραίτο
|
||||
Portrait Reversed = Πορτραίτο (αναστροφή)
|
||||
PSP Action Buttons = Πλήκτρα δράσης PSP
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = מקשי מגע על המסך
|
|||
Portrait = Portrait
|
||||
Portrait Reversed = Portrait reversed
|
||||
PSP Action Buttons = PSP action buttons
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = ךסמה לע עגמ ישקמ
|
|||
Portrait = Portrait
|
||||
Portrait Reversed = Portrait reversed
|
||||
PSP Action Buttons = PSP action buttons
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Svijetleći rubovi
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Dodirne kontrole na ekranu
|
|||
Portrait = Portret
|
||||
Portrait Reversed = Obrnuti portret
|
||||
PSP Action Buttons = PSP akcijske kontrole
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Világító szélek
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Érintőképernyős irányítás
|
|||
Portrait = Álló
|
||||
Portrait Reversed = Fordított álló
|
||||
PSP Action Buttons = PSP akció gombok
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Nonaktifkan masukan diagonal
|
|||
Double tap = Ketuk dua kali
|
||||
Enable gesture control = Aktifkan kontrol gerakan
|
||||
Enable standard shortcut keys = Aktifkan tombol pintas standar
|
||||
frames = frames
|
||||
Gesture = Gerak
|
||||
Gesture mapping = Pemetaan gerakan
|
||||
Glowing borders = Pinggiran bercahaya
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Kontrol sentuh di layar
|
|||
Portrait = Tegak
|
||||
Portrait Reversed = Tegak terbalik
|
||||
PSP Action Buttons = Tombol aksi PSP
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Masukan mentah
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Atur ulang ke pengaturan awal
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disabilita input diagonale
|
|||
Double tap = Doppio tocco
|
||||
Enable gesture control = Abilita controllo gesti
|
||||
Enable standard shortcut keys = Abilita scorciatoie standard
|
||||
frames = frames
|
||||
Gesture = Gesti
|
||||
Gesture mapping = Mappatura gesti
|
||||
Glowing borders = Bordi luminosi
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Controlli Touchscreen
|
|||
Portrait = Ritratto
|
||||
Portrait Reversed = Ritratto invertito
|
||||
PSP Action Buttons = Pulsanti Azione PSP (△◯✕☐)
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Input grezzo
|
||||
Reset to defaults = Reset ai predefiniti
|
||||
Screen Rotation = Rotazione Schermo
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = 斜め入力を無効にする
|
|||
Double tap = ダブルタップ
|
||||
Enable gesture control = ジェスチャー操作を有効にする
|
||||
Enable standard shortcut keys = 標準のショートカットキーを有効にする
|
||||
frames = frames
|
||||
Gesture = ジェスチャー
|
||||
Gesture mapping = ジェスチャー操作の設定をする
|
||||
Glowing borders = 点灯する枠線
|
||||
|
@ -118,6 +119,7 @@ OnScreen = 画面にタッチ用のコントローラを表示する
|
|||
Portrait = 縦
|
||||
Portrait Reversed = 縦 (反転)
|
||||
PSP Action Buttons = PSPアクションボタン
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = 現実の入力
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = デフォルトに戻す
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Tombol Layar-sentuh
|
|||
Portrait = Portret
|
||||
Portrait Reversed = Potret kebalik
|
||||
PSP Action Buttons = PSP Aksi tombol
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -91,6 +91,7 @@ Disable diagonal input = 대각선 입력 비활성화
|
|||
Double tap = 두 번 탭
|
||||
Enable gesture control = 제스처 제어 활성화
|
||||
Enable standard shortcut keys = 표준 단축키 활성화
|
||||
frames = frames
|
||||
Gesture = 제스처
|
||||
Gesture mapping = 제스처 맵핑
|
||||
Glowing borders = 광선 테두리
|
||||
|
@ -119,6 +120,7 @@ OnScreen = 화면 터치 제어
|
|||
Portrait = 세로 방향
|
||||
Portrait Reversed = 세로 방향 반전
|
||||
PSP Action Buttons = PSP 액션 버튼
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = 원시 입력
|
||||
Reset to defaults = 기본값으로 재설정
|
||||
Screen Rotation = 화면 회전
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = ໃຊ້ໜ້າຈໍຄວບຄຸມແບບສຳຜັດ
|
|||
Portrait = ແນວຕັ້ງ
|
||||
Portrait Reversed = ກັບດ້ານແນວຕັ້ງ
|
||||
PSP Action Buttons = ປຸ່ມກົດຂອງ PSP
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Ekrano liečiami kontrolės mygtukai
|
|||
Portrait = Status
|
||||
Portrait Reversed = Status (apsuktas)
|
||||
PSP Action Buttons = PSP konsolės veiksmų mygtukai
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Kawalan sentuh di skrin
|
|||
Portrait = Portrait
|
||||
Portrait Reversed = Portrait reversed
|
||||
PSP Action Buttons = PSP action buttons
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Aanraakbesturing op het scherm
|
|||
Portrait = Portret
|
||||
Portrait Reversed = Omgekeerd portret
|
||||
PSP Action Buttons = PSP-actietoetsen
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Touch-kontroller på skjermen
|
|||
Portrait = Portrait
|
||||
Portrait Reversed = Portrait reversed
|
||||
PSP Action Buttons = PSP action buttons
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Wyłącz wejście cyfrowe
|
|||
Double tap = Dwukrotne dotknięcie
|
||||
Enable gesture control = Włącz kontrolę kestami
|
||||
Enable standard shortcut keys = Włącz standardowe klawisze skrótów
|
||||
frames = frames
|
||||
Gesture = Gesty
|
||||
Gesture mapping = Konfiguracja gestów
|
||||
Glowing borders = Świecące krawędzie
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Przyciski ekranowe
|
|||
Portrait = Pionowo
|
||||
Portrait Reversed = Odwrócone pionowo
|
||||
PSP Action Buttons = Klawisze akcji PSP
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Zwykłe wejście
|
||||
Repeat mode = Tryb powtarzania
|
||||
Reset to defaults = Domyślne
|
||||
|
|
|
@ -114,6 +114,7 @@ Disable diagonal input = Desativar entrada diagonal
|
|||
Double tap = Toque duplo
|
||||
Enable gesture control = Ativar controle dos gestos
|
||||
Enable standard shortcut keys = Ativar teclas padrão dos atalhos
|
||||
frames = frames
|
||||
Gesture = Gesto
|
||||
Gesture mapping = Mapeamento dos gestos
|
||||
Glowing borders = Bordas brilhantes
|
||||
|
@ -142,6 +143,7 @@ OnScreen = Controles do toque na tela
|
|||
Portrait = Retrato
|
||||
Portrait Reversed = Retrato invertido
|
||||
PSP Action Buttons = Botões de ação do PSP
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Entrada natural dos dados
|
||||
Reset to defaults = Resetar para os padrões
|
||||
Screen Rotation = Rotação da tela
|
||||
|
|
|
@ -114,6 +114,7 @@ Disable diagonal input = Desativar entrada diagonal
|
|||
Double tap = Toque duplo
|
||||
Enable gesture control = Ativar controlo dos gestos
|
||||
Enable standard shortcut keys = Ativar teclas padrão dos atalhos
|
||||
frames = frames
|
||||
Gesture = Gesto
|
||||
Gesture mapping = Mapeamento dos Gestos
|
||||
Glowing borders = Bordas brilhantes
|
||||
|
@ -142,6 +143,7 @@ OnScreen = Controlos no ecrã
|
|||
Portrait = Retrato
|
||||
Portrait Reversed = Retrato invertido
|
||||
PSP Action Buttons = Botões de ação do PSP
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Entrada natural dos dados
|
||||
Reset to defaults = Restaurar para os padrões
|
||||
Screen Rotation = Rotação do ecrã
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Controale Touch pe Ecran
|
|||
Portrait = Portret
|
||||
Portrait Reversed = Portret intors
|
||||
PSP Action Buttons = Butoane acțiune PSP
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Отключить диагональный ввод
|
|||
Double tap = Двойное нажатие
|
||||
Enable gesture control = Включить настройку жестов
|
||||
Enable standard shortcut keys = Включить стандартные сочетания клавиш
|
||||
frames = frames
|
||||
Gesture = Жест
|
||||
Gesture mapping = Настройка жестов
|
||||
Glowing borders = Подсветка краёв
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Элементы управления на экране
|
|||
Portrait = Портретная
|
||||
Portrait Reversed = Портретная (перевернутая)
|
||||
PSP Action Buttons = Кнопки действий PSP
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Прямой ввод
|
||||
Repeat mode = Режим повтора
|
||||
Reset to defaults = По умолчанию
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Blockera diagonal input
|
|||
Double tap = Dubbel-tap
|
||||
Enable gesture control = Gest-kontroll
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gest
|
||||
Gesture mapping = Gest-mappning
|
||||
Glowing borders = Lysande kanter
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Touch-kontroller på skärmen
|
|||
Portrait = Porträtt
|
||||
Portrait Reversed = Porträtt omvänt
|
||||
PSP Action Buttons = PSP action-knappar
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Rå input
|
||||
Repeat mode = Repetitionsläge
|
||||
Reset to defaults = Återställ till standardvärden
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Glowing borders
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Pindutan sa screen
|
|||
Portrait = Patayo
|
||||
Portrait Reversed = Pabaliktad na patayo
|
||||
PSP Action Buttons = PSP action buttons
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = ปิดการใช้งานอนาล็อ
|
|||
Double tap = แตะสองครั้ง
|
||||
Enable gesture control = เปิดการควบคุมปัดหน้าจอสัมผัส
|
||||
Enable standard shortcut keys = เปิดการใช้งานปุ่มคีย์ลัดแบบพื้นฐาน
|
||||
frames = frames
|
||||
Gesture = ปัดจอ
|
||||
Gesture mapping = เซ็ตปุ่มควบคุมปัดหน้าจอสัมผัส
|
||||
Glowing borders = แบบขอบทึบแสง
|
||||
|
@ -118,6 +119,7 @@ OnScreen = ปรับใช้หน้าจอควบคุมแบบป
|
|||
Portrait = แนวตั้ง
|
||||
Portrait Reversed = แนวตั้งกลับด้าน
|
||||
PSP Action Buttons = ปุ่มแอ็คชั่นของ PSP
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = ค่าตั้งต้น
|
||||
Repeat mode = โหมดปุ่มย้ำ
|
||||
Reset to defaults = คืนค่าเริ่มต้น
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Diyagonal girişi devre dışı bırak
|
|||
Double tap = Çift dokunma
|
||||
Enable gesture control = Hareket kontrolünü etkinleştir
|
||||
Enable standard shortcut keys = Standart kısayol tuşlarını etkinleştir
|
||||
frames = frames
|
||||
Gesture = Hareket
|
||||
Gesture mapping = Hareket kontrollerini düzenle
|
||||
Glowing borders = Parlayan kenarlar
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Dokunmatik ekran kontrolleri
|
|||
Portrait = Dikey
|
||||
Portrait Reversed = Ters dikey
|
||||
PSP Action Buttons = PSP eylem tuşları
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Saf girdi
|
||||
Repeat mode = Tekrar modu
|
||||
Reset to defaults = Varsayılanlara sıfırla
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Тонкі границі (підсвічування)
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Елементи управління на екрані
|
|||
Portrait = Портретна
|
||||
Portrait Reversed = Портретна (перевернута)
|
||||
PSP Action Buttons = Кнопки дій PSP
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = Disable diagonal input
|
|||
Double tap = Double tap
|
||||
Enable gesture control = Enable gesture control
|
||||
Enable standard shortcut keys = Enable standard shortcut keys
|
||||
frames = frames
|
||||
Gesture = Gesture
|
||||
Gesture mapping = Gesture mapping
|
||||
Glowing borders = Ánh sáng đường viền
|
||||
|
@ -118,6 +119,7 @@ OnScreen = Hiện điều khiển cảm ứng trên màn hình
|
|||
Portrait = Chiều dọc
|
||||
Portrait Reversed = Chiều dọc đảo ngược
|
||||
PSP Action Buttons = Nút hành động của PSP
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = Raw input
|
||||
Repeat mode = Repeat mode
|
||||
Reset to defaults = Reset to defaults
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = 禁用对角线方向输入
|
|||
Double tap = 双击
|
||||
Enable gesture control = 启用体感操作
|
||||
Enable standard shortcut keys = 启用标准快捷键
|
||||
frames = frames
|
||||
Gesture = 体感
|
||||
Gesture mapping = 体感映射
|
||||
Glowing borders = 细边框(发光)
|
||||
|
@ -118,6 +119,7 @@ OnScreen = 屏幕虚拟键
|
|||
Portrait = 纵向
|
||||
Portrait Reversed = 纵向反转
|
||||
PSP Action Buttons = PSP 动作键
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = 原始输入
|
||||
Repeat mode = 连发模式
|
||||
Reset to defaults = 重置为默认
|
||||
|
|
|
@ -90,6 +90,7 @@ Disable diagonal input = 停用對角線輸入
|
|||
Double tap = 點兩下
|
||||
Enable gesture control = 啟用手勢控制
|
||||
Enable standard shortcut keys = 啟用標準快速鍵
|
||||
frames = frames
|
||||
Gesture = 手勢
|
||||
Gesture mapping = 手勢對應
|
||||
Glowing borders = 發光框線
|
||||
|
@ -118,6 +119,7 @@ OnScreen = 螢幕觸控控制
|
|||
Portrait = 直向
|
||||
Portrait Reversed = 直向反轉
|
||||
PSP Action Buttons = PSP 動作按鈕
|
||||
Rapid fire interval = Rapid fire interval
|
||||
Raw input = 原始輸入
|
||||
Reset to defaults = 重設為預設值
|
||||
Screen Rotation = 螢幕旋轉
|
||||
|
|
Loading…
Add table
Reference in a new issue