diff options
author | Lionel Ulmer | 2002-05-04 09:55:10 +0000 |
---|---|---|
committer | Lionel Ulmer | 2002-05-04 09:55:10 +0000 |
commit | ab0401242e07ace58025c8a4a9f660690b55d144 (patch) | |
tree | d3bd0721d4b4e1af0c2560eed907f52f56d3b79d /simon | |
parent | 6979311c0acfd8a90a53264a09ade0310b928e85 (diff) | |
download | scummvm-rg350-ab0401242e07ace58025c8a4a9f660690b55d144.tar.gz scummvm-rg350-ab0401242e07ace58025c8a4a9f660690b55d144.tar.bz2 scummvm-rg350-ab0401242e07ace58025c8a4a9f660690b55d144.zip |
Change the 'poperty' call to be 64-bits clean.
Porters, please check that I did not break anything while updating
your ports. Thanks :-)
svn-id: r4196
Diffstat (limited to 'simon')
-rw-r--r-- | simon/simon.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index c8056c5907..15691dc84c 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -7884,6 +7884,8 @@ void SimonState::realizePalette() { void SimonState::go() { + OSystem::Property prop; + if (!_dump_file) _dump_file = stdout; @@ -7915,7 +7917,8 @@ void SimonState::go() { _vga_base_delay = 1; _vk_t_toggle = true; - _system->property(OSystem::PROP_SHOW_DEFAULT_CURSOR, 1); + prop.show_cursor = true; + _system->property(OSystem::PROP_SHOW_DEFAULT_CURSOR, &prop); while(1) { hitarea_stuff(); |