aboutsummaryrefslogtreecommitdiff
path: root/x11.cpp
diff options
context:
space:
mode:
authorLionel Ulmer2002-05-04 09:55:10 +0000
committerLionel Ulmer2002-05-04 09:55:10 +0000
commitab0401242e07ace58025c8a4a9f660690b55d144 (patch)
treed3bd0721d4b4e1af0c2560eed907f52f56d3b79d /x11.cpp
parent6979311c0acfd8a90a53264a09ade0310b928e85 (diff)
downloadscummvm-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 'x11.cpp')
-rw-r--r--x11.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/x11.cpp b/x11.cpp
index c6d9dfd0f5..38f10c48e3 100644
--- a/x11.cpp
+++ b/x11.cpp
@@ -111,7 +111,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);
@@ -703,13 +703,13 @@ void *OSystem_X11::create_thread(ThreadProc *proc, void *param) {
return thread;
}
-uint32 OSystem_X11::property(int param, uint32 value) {
+uint32 OSystem_X11::property(int param, Property *value) {
switch (param)
{
case PROP_GET_SAMPLE_RATE:
return 22050;
}
- warning("Property not implemented yet (%d, 0x%08X) ", param, value);
+ warning("Property not implemented yet (%d) ", param);
return 0;
}