mirror of
https://github.com/luanti-org/luanti.git
synced 2025-08-11 17:51:04 +00:00
Fix various performance issues reported by cppcheck + code style (CI) (#5635)
* Make CI happy with code style on master * guiFileSelectMenu: remove useless includes * some performance fixes pointed by cppcheck * remove some useless casts * TextDest: remove unused setFormSpec function
This commit is contained in:
parent
f151b23220
commit
dc0e9097d3
7 changed files with 70 additions and 67 deletions
|
@ -34,10 +34,10 @@ public:
|
|||
|
||||
struct SimpleSoundSpec
|
||||
{
|
||||
SimpleSoundSpec(const std::string &name = "", float gain = 1.0) :
|
||||
name(name),
|
||||
gain(gain)
|
||||
{}
|
||||
SimpleSoundSpec(const std::string &name = "", float gain = 1.0)
|
||||
: name(name), gain(gain)
|
||||
{
|
||||
}
|
||||
|
||||
bool exists() const { return name != ""; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue