From 69f0df9cbaed6620a190ac289958c5bf7c079d92 Mon Sep 17 00:00:00 2001 From: notaz Date: Thu, 16 Jun 2011 18:43:51 +0300 Subject: arm_utils: relax alignment requirements the code needing alignment isn't reached often anyway. --- plugins/dfxvideo/draw_fb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/dfxvideo') diff --git a/plugins/dfxvideo/draw_fb.c b/plugins/dfxvideo/draw_fb.c index dbf0fc8..b560813 100644 --- a/plugins/dfxvideo/draw_fb.c +++ b/plugins/dfxvideo/draw_fb.c @@ -21,7 +21,7 @@ unsigned long lSetMask; static void blit(void) { - int px = PSXDisplay.DisplayPosition.x & ~3; // XXX: align needed by bgr*_to_... + int px = PSXDisplay.DisplayPosition.x & ~1; // XXX: align needed by bgr*_to_... int py = PSXDisplay.DisplayPosition.y; int w = PreviousPSXDisplay.Range.x1; int h = PreviousPSXDisplay.DisplayMode.y; -- cgit v1.2.3