diff options
author | Travis Howell | 2006-03-13 11:58:01 +0000 |
---|---|---|
committer | Travis Howell | 2006-03-13 11:58:01 +0000 |
commit | 71a7754a37099ee7633f1953c3937a937597042d (patch) | |
tree | 01375ba7a2451fc0477a9cb6aee61740cb478ef0 /engines/lure | |
parent | 480aee83aa4b2b6e0ed48985f6a76f7fbbf06c2f (diff) | |
download | scummvm-rg350-71a7754a37099ee7633f1953c3937a937597042d.tar.gz scummvm-rg350-71a7754a37099ee7633f1953c3937a937597042d.tar.bz2 scummvm-rg350-71a7754a37099ee7633f1953c3937a937597042d.zip |
Fix a valgrind warning
svn-id: r21260
Diffstat (limited to 'engines/lure')
-rw-r--r-- | engines/lure/events.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/lure/events.cpp b/engines/lure/events.cpp index 51b22b8bf1..660fb76693 100644 --- a/engines/lure/events.cpp +++ b/engines/lure/events.cpp @@ -38,6 +38,8 @@ Mouse::Mouse() { _lButton = false; _rButton = false; _cursorNum = 0; + _x = 0; + _y = 0; setCursorNum(0); } |