Skip to content

Commit

Permalink
Added fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
medcelerate committed Jul 14, 2023
1 parent 618937d commit be754e6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,11 @@ void generateSchema(std::vector<std::string> &senders, ScopedSchema& schema, boo
schema.schema.info = _strdup("");
schema.schema.pluginVersion = _strdup("2.0");

std::vector<const char*> channels;
channels.push_back("Default");
// std::vector<const char*> channels;
// channels.push_back("Default");

schema.schema.channels.nChannels = channels.size();
schema.schema.channels.channels = channels.data();
// schema.schema.channels.nChannels = channels.size();
// schema.schema.channels.channels = channels.data();

if (!genOutputs) {
schema.schema.scenes.nScenes = 1;
Expand Down Expand Up @@ -258,8 +258,8 @@ void generateGlTexture(RenderTarget& target, const int width, const int height,

int main(int argc, char* argv[])
{
while (!::IsDebuggerPresent())
::Sleep(100);
// while (!::IsDebuggerPresent())
// ::Sleep(100);


// Setup argpraeser
Expand Down

0 comments on commit be754e6

Please sign in to comment.