computerscare-vcv-modules

computerscare modules for VCV Rack
Log | Files | Refs

commit 78f32eead527a8d0bb52808912f4499060240b95
parent dd33503e1d131d55798fec34cbddfa8e5c001cd9
Author: Adam M <[email protected]>
Date:   Wed, 27 Oct 2021 12:48:50 -0500

fix customblank slideshow

Diffstat:
Msrc/ComputerscareBlank.cpp | 14+++-----------
1 file changed, 3 insertions(+), 11 deletions(-)

diff --git a/src/ComputerscareBlank.cpp b/src/ComputerscareBlank.cpp @@ -347,17 +347,17 @@ struct ComputerscareBlank : ComputerscareMenuParamModule { jsonFlag = false; } void setContainingDirectory(int index = 0) { - std::string dir = asset::user(paths[index]); + std::string dir = system::getDirectory(asset::user(paths[index])); std::string currentImageFullpath; parentDirectory = dir; - int imageIndex = 0;; + int imageIndex = 0;; struct dirent* dirp = NULL; DIR* rep = NULL; rep = opendir(dir.c_str()); catalog.clear(); - //fichier.clear(); + if (rep) { while ((dirp = readdir(rep)) != NULL) { std::string name = dirp->d_name; @@ -378,7 +378,6 @@ struct ComputerscareBlank : ComputerscareMenuParamModule { if (currentImageFullpath == paths[index]) { fileIndexInCatalog = imageIndex; } - //DEBUG("we got gif:%s", name.c_str()); imageIndex++; } } @@ -418,15 +417,8 @@ struct ComputerscareBlank : ComputerscareMenuParamModule { } void setPath(std::string path, int index = 0) { - //if (paths.size() <= index) { - //paths.push_back(path); - //} - //else { numFrames = 0; paths[index] = path; - //} - printf("setted %s\n", path.c_str()); - //numFrames = paths.size(); currentFrame = 0; } void setFrameCount(int frameCount) {