removed \n

This commit is contained in:
Brian Matzon 2004-01-12 17:24:47 +00:00
parent 6f44f03381
commit 8bcedbffe0
2 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ JNIEXPORT void JNICALL Java_org_lwjgl_input_Controller_nCreate(JNIEnv *env, jcla
// assert that window has been created
if(hwnd == NULL) {
throwException(env, "Please create the window before initializing input devices\n");
throwException(env, "Please create the window before initializing input devices");
return;
}

View File

@ -110,7 +110,7 @@ JNIEXPORT void JNICALL Java_org_lwjgl_input_Mouse_nCreate(JNIEnv *env, jclass cl
// assert that Direct Input has been created
if(lpdi == NULL) {
throwException(env, "Please create the window before initializing input devices\n");
throwException(env, "Please create the window before initializing input devices");
return;
}