Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | common: param_package: Demote DEBUG to TRACE for getters | Narr the Reg | 2022-06-16 | 1 | -3/+3 |
| | |||||
* | common/logging: Reduce scope of fmt include | ameerj | 2021-10-02 | 1 | -0/+1 |
| | |||||
* | citra_qt/configuration: misc input tab improvements | zhupengfei | 2018-10-06 | 1 | -1/+17 |
| | | | | | | | | * Added a context menu on the buttons including Clear & Restore Default * Allow clearing (unsetting) inputs. Added a Clear All button * Allow restoring a single input to default (instead of all) | ||||
* | param_package: Take std::string by value in string-based Set() function | Lioncash | 2018-07-20 | 1 | -3/+5 |
| | | | | | Allows avoiding string copies by letting the strings be moved into the function calls. | ||||
* | param_package: Use std::unordered_map's insert_or_assign instead of map indexing | Lioncash | 2018-07-20 | 1 | -3/+3 |
| | | | | | | | | | | | This avoids a redundant std::string construction if a key doesn't exist in the map already. e.g. data[key] requires constructing a new default instance of the value in the map (but this is wasteful, since we're already setting something into the map over top of it). | ||||
* | param_package: Get rid of file-static std::string construction | Lioncash | 2018-07-20 | 1 | -3/+4 |
| | | | | Avoids potential dynamic allocation occuring during program launch | ||||
* | Rename logging macro back to LOG_* | James Rowe | 2018-07-03 | 1 | -6/+6 |
| | |||||
* | common: Move logging macros over to new fmt-capable macros where applicable | Lioncash | 2018-04-27 | 1 | -6/+6 |
| | |||||
* | Common: add ParamPackage | wwylele | 2017-03-01 | 1 | -0/+120 |