From 8bcedbffe02b7e246b18ef680b47b0645521dd9a Mon Sep 17 00:00:00 2001 From: Brian Matzon Date: Mon, 12 Jan 2004 17:24:47 +0000 Subject: [PATCH] removed \n --- src/native/win32/org_lwjgl_input_Controller.cpp | 2 +- src/native/win32/org_lwjgl_input_Mouse.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/native/win32/org_lwjgl_input_Controller.cpp b/src/native/win32/org_lwjgl_input_Controller.cpp index 1ab0420c..8fe54b51 100644 --- a/src/native/win32/org_lwjgl_input_Controller.cpp +++ b/src/native/win32/org_lwjgl_input_Controller.cpp @@ -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; } diff --git a/src/native/win32/org_lwjgl_input_Mouse.cpp b/src/native/win32/org_lwjgl_input_Mouse.cpp index 5f86dc51..db560c4a 100644 --- a/src/native/win32/org_lwjgl_input_Mouse.cpp +++ b/src/native/win32/org_lwjgl_input_Mouse.cpp @@ -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; }