Remove some unnecessary newlines in debug messages. psp
authorachurch
Wed, 27 Jul 2011 22:50:36 +0900
branchpsp
changeset 677 32f6d52ff012
parent 676 f0a7b3d09d06
child 678 fb9f83735dc5
Remove some unnecessary newlines in debug messages.
PSP/src/fakegl.c
PSP/tools/AquariaPSPBuilder.c
--- a/PSP/src/fakegl.c	Wed Jul 27 22:48:17 2011 +0900
+++ b/PSP/src/fakegl.c	Wed Jul 27 22:50:36 2011 +0900
@@ -955,7 +955,7 @@
         ge_sfactor = GE_BLEND_ONE_MINUS_DST_ALPHA;
         break;
       default:
-        DMSG("Source function 0x%X not supported\n", (int)sfactor);
+        DMSG("Source function 0x%X not supported", (int)sfactor);
         SET_ERROR(GL_INVALID_ENUM);
         return;
     }
@@ -988,7 +988,7 @@
         ge_dfactor = GE_BLEND_ONE_MINUS_DST_ALPHA;
         break;
       default:
-        DMSG("Destination function 0x%X not supported\n", (int)dfactor);
+        DMSG("Destination function 0x%X not supported", (int)dfactor);
         SET_ERROR(GL_INVALID_ENUM);
         return;
     }
--- a/PSP/tools/AquariaPSPBuilder.c	Wed Jul 27 22:48:17 2011 +0900
+++ b/PSP/tools/AquariaPSPBuilder.c	Wed Jul 27 22:50:36 2011 +0900
@@ -343,7 +343,7 @@
         }
     }
 
-    DMSG("WARNING: Handler %s for signal %s not found!\n",
+    DMSG("WARNING: Handler %s for signal %s not found!",
          handler_name, signal_name);
 }