SceneManager nearly working

This commit is contained in:
MegaMech
2025-03-23 18:28:25 -06:00
parent 1dee7001f6
commit 8fe7732039
12 changed files with 238 additions and 135 deletions
+1 -1
View File
@@ -77,7 +77,7 @@ GameEngine::GameEngine() {
if (std::filesystem::is_directory(patches_path)) {
for (const auto& p : std::filesystem::recursive_directory_iterator(patches_path)) {
auto ext = p.path().extension().string();
if (StringHelper::IEquals(ext, ".otr") || StringHelper::IEquals(ext, ".o2r")) {
if (StringHelper::IEquals(ext, ".zip") || StringHelper::IEquals(ext, ".o2r")) {
archiveFiles.push_back(p.path().generic_string());
}
}