From ab0401242e07ace58025c8a4a9f660690b55d144 Mon Sep 17 00:00:00 2001 From: Lionel Ulmer Date: Sat, 4 May 2002 09:55:10 +0000 Subject: 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 --- simon/simon.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'simon') 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(); -- cgit v1.2.3