diff options
author | Marcus Comstedt | 2006-02-09 12:30:52 +0000 |
---|---|---|
committer | Marcus Comstedt | 2006-02-09 12:30:52 +0000 |
commit | 405c2832e8bc3354cff1dfa2cce480a057f74c9c (patch) | |
tree | b9c4269071e53516259840aa2ec3ae0ee28b4056 | |
parent | 60bbd5e470db1946d9c6d02951a1c9ec6b8aba35 (diff) | |
download | scummvm-rg350-405c2832e8bc3354cff1dfa2cce480a057f74c9c.tar.gz scummvm-rg350-405c2832e8bc3354cff1dfa2cce480a057f74c9c.tar.bz2 scummvm-rg350-405c2832e8bc3354cff1dfa2cce480a057f74c9c.zip |
Properly initialize _devpoll.
svn-id: r20439
-rw-r--r-- | backends/dc/dcmain.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/backends/dc/dcmain.cpp b/backends/dc/dcmain.cpp index 71c15ac580..b81b80d0d2 100644 --- a/backends/dc/dcmain.cpp +++ b/backends/dc/dcmain.cpp @@ -47,10 +47,10 @@ OSystem *OSystem_Dreamcast::create() { } OSystem_Dreamcast::OSystem_Dreamcast() - : screen(NULL), mouse(NULL), overlay(NULL), _softkbd(this), _ms_buf(NULL), - _sound_proc(NULL), _timer_active(false), _current_shake_pos(0), - _aspect_stretch(false), _softkbd_on(false), _softkbd_motion(0), - _enable_cursor_palette(false) + : _devpoll(0), screen(NULL), mouse(NULL), overlay(NULL), _softkbd(this), + _ms_buf(NULL), _sound_proc(NULL), _timer_active(false), + _current_shake_pos(0), _aspect_stretch(false), _softkbd_on(false), + _softkbd_motion(0), _enable_cursor_palette(false) { memset(screen_tx, 0, sizeof(screen_tx)); memset(mouse_tx, 0, sizeof(mouse_tx)); |