maxnut / GDMegaOverlay

Free geometry dash mod menu with useful features such as: startpos switcher, show hitboxes, internal recorder, macro bot, clickbot and much more
GNU General Public License v3.0
277 stars 45 forks source link

Clickpack Issue #253

Closed arandomdude7 closed 8 months ago

arandomdude7 commented 8 months ago

When I Was Creating My Clickpack I Used .WAV Instead Of .wav which made gdmo think that its not a valid clickpack when it is it occurs to be this whats causing the bug: if (entry.is_regular_file() && (entry.path().extension() == ".wav")) you could change to: if (entry.is_regular_file() && (entry.path().extension().tolower() == ".wav")) if it doesn't work then it's understandable because i use c# and not c++ incase it says it does not exist #include <ctype.h> or this #include <iostream>

maxnut commented 8 months ago

fixed