You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Noise not needed - F4 shows if shaders are compiled.
* Don't compile native presets by default in Visual Studio
* Debug / duplicate info
* Missed a debug native preset.
* Make texture errors more clear - we failed looking for multiple extensions.
* Move images from presets folder to textures folder
* Documented missing textures.
* Undo Visual Studio version bump.
* Renable NativePresetFactory (but the example native presets remain disabled)
* Comment
* Fixes / updates to audio device toggling.
* Stop crashing if there is no input microphone. Make fake audio dynamic so it can be enabled if there is no mic.
* Remove debug output.
* Document VC++ redist requirement.
* F4 missing from SDL help menu.
* Windows app instead of Console (no more cmd.exe pop-up when launching).
* Fullscreen for built-in settings.
* New icon (based on github and idle preset and consistent with Steam)
* Change language for loopback / audio changing.
* default fullscreen for built-in settings.
* Revert "Fullscreen for built-in settings."
This reverts commit b1936e7.
* Revert "default fullscreen for built-in settings."
This reverts commit ea89584.
* Revert "9a9151b9"
* 9a9151b
* fake_audio to fakeAudio
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ Its purpose in life is to read an audio input and to produce mesmerizing visuals
11
11
### Available For
12
12
*[macOS, Linux (binary)](https://github.com/projectM-visualizer/projectm/releases)
13
13
*[Windows Store (PC, XBOX, Phone)](https://www.microsoft.com/store/apps/9NDCVH0VCWJN)
14
+
*[Windows (standalone binary)](https://github.com/projectM-visualizer/projectm/releases) (Requires the latest [Visual C++ redistributable](https://support.microsoft.com/en-us/help/2977003/the-latest-supported-visual-c-downloads))
Copy file name to clipboardExpand all lines: src/projectM-sdl/pmSDL.hpp
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,8 @@ class projectMSDL : public projectM {
88
88
89
89
90
90
bool done;
91
+
bool wasapi = false; // Used to track if wasapi is currently active. This bool will allow us to run a WASAPI app and still toggle to microphone inputs.
92
+
bool fakeAudio = false; // Used to track fake audio, so we can turn it off and on.
0 commit comments