diff options
author | Zachary Poulin <pouz0601@usherbrooke.ca> | 2023-03-21 10:50:23 -0400 |
---|---|---|
committer | Zachary Poulin <pouz0601@usherbrooke.ca> | 2023-03-21 10:50:23 -0400 |
commit | 1d23034ac50413ed3172bad68c944faf93199dcc (patch) | |
tree | e5b43a2e87b1f994aaf608e68e5fc2a6155149b5 | |
parent | 1acc49b21d850e035a2517930e6738b873953047 (diff) |
Fix dumb syntax errors
-rw-r--r-- | main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ int main() songFolders.push_back("/Maynard-Ferguson-Theme-From-Shaft/");
songFolders.push_back("/Owane-Rock-Is-Too-Heavy/");
songFolders.push_back("/Stevie-Wonder-Contusion/");
- songFolders.push_back("/Victor-Wooten-and-Steve-Bailey-A-Chick-from-Corea-(Live)/"+chartFile);
+ songFolders.push_back("/Victor-Wooten-and-Steve-Bailey-A-Chick-from-Corea-(Live)/");
string songRoot = "./songs";
string chartFile = "notes.chart";
|