Browse Source

removed glfwGetOpenedFilename

pull/1278/head
Silvio Kunaschk 6 years ago
parent
commit
313d514c33
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      src/main.cpp

+ 4
- 1
src/main.cpp View File

@@ -148,7 +148,10 @@ int main(int argc, char *argv[]) {
INFO("Initializing app"); INFO("Initializing app");
appInit(); appInit();


const char *openedFilename = glfwGetOpenedFilename();
// removed for now, see https://github.com/VCVRack/Rack/issues/1269
// https://stackoverflow.com/questions/22952536/how-do-i-pass-a-filename-from-finder-into-my-os-x-application
//const char *openedFilename = glfwGetOpenedFilename();
const char *openedFilename = nullptr;
if (openedFilename) { if (openedFilename) {
patchPath = openedFilename; patchPath = openedFilename;
} }


Loading…
Cancel
Save