Skip to content

Commit ade3f93

Browse files
authored
Merge pull request #17 from MuhXd/master
i think
2 parents 0f8ace7 + 0b9e061 commit ade3f93

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"geode": "4.2.0",
2+
"geode": "4.1.1",
33
"gd": {
44
"android": "2.2074",
55
"win": "2.2074",

src/layers/Tags.hpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,7 @@ class Tags {
117117
}
118118

119119
// Convert a string to a corresponding tag (integer)
120-
int getTagFromString(const std::string& name) {
121-
log::debug("Getting tag from string: {}", name);
120+
int getTagFromString(std::string name) {
122121
auto it = m_tagMap.find(name);
123122
if (it != m_tagMap.end()) {
124123
log::debug("Found tag: {}", it->second);
@@ -130,7 +129,6 @@ class Tags {
130129

131130
// Convert an integer tag back to the corresponding string
132131
std::string getStringFromTag(int tag) {
133-
log::debug("Getting string from tag: {}", tag);
134132
auto it = m_stringMap.find(tag);
135133
if (it != m_stringMap.end()) {
136134
log::debug("Found string: {}", it->second);

0 commit comments

Comments
 (0)