mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Add mixed comments to input code, make some tooltip clearer
This commit is contained in:
@ -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) {}
|
||||
|
Reference in New Issue
Block a user