rlm@62: package com.aurellem.capture; rlm@62: rlm@62: import jme3test.helloworld.HelloLoop; rlm@62: rlm@62: import com.jme3.app.Application; rlm@62: import com.jme3.system.AppSettings; rlm@62: rlm@62: rlm@62: /** rlm@62: * jMonkeyEngine will save the settings used in previous runs. rlm@62: * This can be especially frustrating when it saves the "Send" rlm@62: * AudioRenderer setting from running the a program that is rlm@62: * capturing audio. This resets your settings to fix the problem. rlm@62: * rlm@62: * if you get rlm@62: * "Unrecognizable audio renderer specified: Send" rlm@62: * run this program. rlm@62: * rlm@62: * @author Robert McIntyre rlm@62: * rlm@62: */ rlm@62: rlm@62: public class FixSettings { rlm@62: rlm@62: public static void main(String[] ignore){ rlm@62: Application app = new HelloLoop(); rlm@62: AppSettings basic = new AppSettings(true); rlm@62: app.setSettings(basic); rlm@62: app.start(); rlm@62: } rlm@62: }