Fixes a spelling mistake in the creation of the offscreen buffer

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10001 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
jul..om 2012-11-17 00:38:57 +00:00
parent 84e4f0f8ad
commit 3bde7326de

@ -75,7 +75,7 @@ public class JoglOffscreenBuffer extends JoglContext implements Runnable {
caps.setSampleBuffers(true); caps.setSampleBuffers(true);
caps.setNumSamples(samples); caps.setNumSamples(samples);
offscreenDrawable = GLDrawableFactory.getFactory(GLProfile.getMaxFixedFunc(true)).createOffscreenAutoDrawable(null, caps, null, width, width, null); offscreenDrawable = GLDrawableFactory.getFactory(GLProfile.getMaxFixedFunc(true)).createOffscreenAutoDrawable(null, caps, null, width, height, null);
offscreenDrawable.display(); offscreenDrawable.display();