mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
Add mixed comments to input code, make some tooltip clearer
This commit is contained in:
parent
e9e41b925b
commit
f4fec42165
10 changed files with 28 additions and 9 deletions
|
@ -63,7 +63,9 @@ public:
|
|||
enum class ParseStatus
|
||||
{
|
||||
Successful,
|
||||
// Note that the expression could still work in this case (be valid and return a value)
|
||||
SyntaxError,
|
||||
// Will return the default value
|
||||
EmptyExpression,
|
||||
};
|
||||
|
||||
|
@ -107,6 +109,7 @@ class ControlQualifier
|
|||
public:
|
||||
bool has_device;
|
||||
Core::DeviceQualifier device_qualifier;
|
||||
// Makes no distinction between input and output
|
||||
std::string control_name;
|
||||
|
||||
ControlQualifier() : has_device(false) {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue