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 /wince | |
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 'wince')
-rw-r--r-- | wince/pocketpc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wince/pocketpc.cpp b/wince/pocketpc.cpp index 324285f338..a93cb4b5c6 100644 --- a/wince/pocketpc.cpp +++ b/wince/pocketpc.cpp @@ -118,7 +118,7 @@ public: void quit(); // Set a parameter - uint32 property(int param, uint32 value); + uint32 property(int param, Property *value); static OSystem *create(int gfx_mode, bool full_screen); @@ -1196,7 +1196,7 @@ bool OSystem_WINCE3::set_sound_proc(void *param, SoundProc *proc, byte format) { /* Hotswap graphics modes */ void OSystem_WINCE3::get_320x200_image(byte *buf) {;} void OSystem_WINCE3::hotswap_gfx_mode() {;} -uint32 OSystem_WINCE3::property(int param, uint32 value) { +uint32 OSystem_WINCE3::property(int param, Property *value) { switch(param) { case PROP_TOGGLE_FULLSCREEN: |