Skip to content

Commit

Permalink
audio test: disable Live++ and set window pos to a good general defau…
Browse files Browse the repository at this point in the history
…lt for others
  • Loading branch information
richardeakin committed Oct 5, 2024
1 parent 8a6e218 commit 8a2b0c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/_audio/AudioTests/src/AudioTestsApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ namespace im = ImGui;
#endif

// To use Live++, place necessary files in a folder called LivePP next to the cinder folder
#define LIVEPP_ENABLED 1
#define LIVEPP_ENABLED 0
#if LIVEPP_ENABLED
#include "LPP_API_x64_CPP.h"
#endif

const int SCREEN_INDEX = 1;
const ivec2 WINDOW_POS = { 2000, 50 };
const int SCREEN_INDEX = 0;
const ivec2 WINDOW_POS = { 200, 200 };
const ivec2 WINDOW_SIZE = { 1600, 1000 };

class AudioTestsApp : public app::App {
Expand Down

0 comments on commit 8a2b0c6

Please sign in to comment.