mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 11:35:54 +00:00
[Android] Make two class variables in InputConfigFragment private. If left the way they were, they could be accessed by other classes in its package, which is not intended.
This commit is contained in:
parent
97bfa6300d
commit
85c78759c7
1 changed files with 2 additions and 2 deletions
|
@ -28,8 +28,8 @@ public final class InputConfigFragment extends Fragment
|
|||
private ListView mDrawerList;
|
||||
private InputConfigAdapter adapter;
|
||||
private int configPosition = 0;
|
||||
boolean Configuring = false;
|
||||
boolean firstEvent = true;
|
||||
private boolean Configuring = false;
|
||||
private boolean firstEvent = true;
|
||||
|
||||
static public String getInputDesc(InputDevice input)
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue