summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-01-02 19:04:51 +0100
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2008-01-02 19:04:51 +0100
commitb106e0fb5500495f69b09023c87d155bf21ada3c (patch)
tree7b3765864768734757b71355548bad5a4a9fd1c2
parent187be960c88a4f9839d6f5109d16f832980cee04 (diff)
downloadxine-lib-b106e0fb5500495f69b09023c87d155bf21ada3c.tar.gz
xine-lib-b106e0fb5500495f69b09023c87d155bf21ada3c.tar.bz2
Don't mark the spu_event as constant.
-rw-r--r--src/input/input_dvd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c
index e0dd3bba1..2cf16adeb 100644
--- a/src/input/input_dvd.c
+++ b/src/input/input_dvd.c
@@ -332,7 +332,7 @@ static void send_mouse_enter_leave_event(dvd_input_plugin_t *this, int direction
this->mouse_in = !this->mouse_in;
if(direction != this->mouse_in) {
- const xine_spu_button_t spu_event = {
+ xine_spu_button_t spu_event = {
.direction = direction,
.button = this->mouse_buttonN
};