-
-
Notifications
You must be signed in to change notification settings - Fork 381
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wavemode7 #457
Conversation
fix wavemode=7 DoubleLine
@@ -19,7 +19,7 @@ pm_font__DATA = fonts/Vera.ttf fonts/VeraMono.ttf | |||
# find and install all preset files | |||
install-data-local: | |||
find "$(PRESETSDIR)" -type d -exec $(MKDIR_P) "$(DESTDIR)/$(pm_data_dir)/{}" \; | |||
find "$(PRESETSDIR)" -type f -exec $(INSTALL_DATA) "{}" "$(DESTDIR)/$(pm_data_dir)/{}" \; | |||
find "$(PRESETSDIR)" -path "$(PRESETSDIR)/tests" -prune -o -type f -exec $(INSTALL_DATA) "{}" "$(DESTDIR)/$(pm_data_dir)/{}" \; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's this do?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I noticed that the test presets get copied when you do "make install". This skips the tests directory. Hmm, should probably do that on the line above as well...
As always opinions/testing appreciated!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PS: I followed the link on this page to install winamp/milkdrop2. http://www.geisswerks.com/milkdrop/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm ok I'm not an advanced find
user - I guess that's doing two different things in one statement? wild
# Conflicts: # src/libprojectM/Renderer/MilkdropWaveform.cpp
I don't know GL very well, but this fix seems to make the double line wave render properly. I just loop through the main body of ::Draw() twice if necessary.
Added new test presets to verify.