diff src/video/nds/SDL_ndsevents.c @ 2750:e3affc66d963

Fixes to the NDS sprite2 test. Illustrates partially working texture-as-sprite functionality.
author Darren Alton <dalton@stevens.edu>
date Sat, 06 Sep 2008 04:31:34 +0000
parents 1c5f440a60fe
children 99210400e8b9
line wrap: on
line diff
--- a/src/video/nds/SDL_ndsevents.c	Sat Sep 06 00:10:16 2008 +0000
+++ b/src/video/nds/SDL_ndsevents.c	Sat Sep 06 04:31:34 2008 +0000
@@ -47,8 +47,8 @@
     }
     if (keysHeld() & KEY_TOUCH) {
         touchPosition t = touchReadXY();
-        SDL_SendMouseMotion(0, 0, t.px, t.py, 1); /* last arg is pressure,
-                                                     hardcoded 1 for now */
+        SDL_SendMouseMotion(0, 0, t.px, t.py, 1);       /* last arg is pressure,
+                                                           hardcoded 1 for now */
     }
 }