gma: Don't log cursor movements
They were spewing the log too much.
Change-Id: I6b82d39945499c025e444749ba0b0a04d88254a3
Signed-off-by: Nico Huber <nico.huber@secunet.com>
Reviewed-on: https://review.sourcearcade.org/c/libgfxinit/+/535
Reviewed-by: Thomas Heijligen <src@posteo.de>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Tested-by: Nico Huber <nico.h@gmx.de>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
diff --git a/common/hw-gfx-gma-pipe_setup.adb b/common/hw-gfx-gma-pipe_setup.adb
index 5e32281..31aecf5 100644
--- a/common/hw-gfx-gma-pipe_setup.adb
+++ b/common/hw-gfx-gma-pipe_setup.adb
@@ -525,11 +525,13 @@
end if;
Registers.Write
(Register => Cursors (Pipe).POS,
- Value => CUR_POS_Y (Y) or CUR_POS_X (X));
+ Value => CUR_POS_Y (Y) or CUR_POS_X (X),
+ Verbose => False);
-- write to CUR_BASE always arms other CUR_* registers
Registers.Write
(Register => Cursors (Pipe).BASE,
- Value => Shift_Left (Word32 (Cursor.GTT_Offset), 12));
+ Value => Shift_Left (Word32 (Cursor.GTT_Offset), 12),
+ Verbose => False);
end Place_Cursor;
----------------------------------------------------------------------------