*** empty log message ***

This commit is contained in:
Elias Naur 2003-10-06 08:13:18 +00:00
parent 6e86fa857a
commit 09cdf84141

View file

@ -542,7 +542,9 @@ JNIEXPORT void JNICALL Java_org_lwjgl_opengl_Window_restore
*/
JNIEXPORT jboolean JNICALL Java_org_lwjgl_opengl_Window_nIsDirty
(JNIEnv *env, jclass clazz) {
return dirty;
bool result = dirty;
dirty = false;
return result;
}
/*