Skip to content

Commit 6cea446

Browse files
authored
eh let's go for one more change why not
1 parent c73275a commit 6cea446

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/SongManager.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@ class SongManager {
2424
}
2525

2626
void addSong(const std::string&);
27-
void removeSong(const std::string &path);
27+
void removeSong(const std::string& path);
2828
int getSongsSize() const;
2929
void clearSongs();
3030
void pickRandomSong();
3131
bool isOriginalMenuLoop() const;
3232
void setPlaylistMode();
3333
bool isPlaylistMode() const;
3434
std::string getCurrentSong();
35-
void setCurrentSong(const std::string &);
35+
void setCurrentSong(const std::string&);
3636
void setCurrentSongToSavedSong();
3737
void update(float) const;
3838
bool getCalledOnce() const;
@@ -45,7 +45,7 @@ class SongManager {
4545
void addToBlacklist(const std::string&);
4646
void addToBlacklist();
4747
std::vector<std::string> getBlacklist();
48-
void addToFavorites(const std::string &song);
48+
void addToFavorites(const std::string& song);
4949
void addToFavorites();
5050
std::vector<std::string> getFavorites();
5151
void setOverride(const std::string_view);
@@ -76,4 +76,4 @@ class SongManager {
7676
bool m_isOverride = false;
7777
std::vector<std::string> m_blacklist;
7878
std::vector<std::string> m_favorites;
79-
};
79+
};

src/Utils.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ class Utils {
3232
static void queueUpdateSCMLabel();
3333
static void addButton(const std::string& name, const cocos2d::SEL_MenuHandler function, cocos2d::CCMenu* menu, cocos2d::CCNode* target);
3434
static void writeToFile(const std::string& toWriteToFile, std::filesystem::path fileForWriting);
35-
};
35+
};

0 commit comments

Comments
 (0)