aboutsummaryrefslogtreecommitdiff
path: root/dc
diff options
context:
space:
mode:
authorLionel Ulmer2002-05-04 09:55:10 +0000
committerLionel Ulmer2002-05-04 09:55:10 +0000
commitab0401242e07ace58025c8a4a9f660690b55d144 (patch)
treed3bd0721d4b4e1af0c2560eed907f52f56d3b79d /dc
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 'dc')
-rw-r--r--dc/dc.h2
-rw-r--r--dc/dcmain.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/dc/dc.h b/dc/dc.h
index ed2c5f7a77..258c2ecc63 100644
--- a/dc/dc.h
+++ b/dc/dc.h
@@ -64,7 +64,7 @@ class OSystem_Dreamcast : public OSystem {
void quit();
// Set a parameter
- uint32 property(int param, uint32 value);
+ uint32 property(int param, Property *value);
static OSystem *create();
diff --git a/dc/dcmain.cpp b/dc/dcmain.cpp
index a8451f71d3..0f98f4ecfc 100644
--- a/dc/dcmain.cpp
+++ b/dc/dcmain.cpp
@@ -96,7 +96,7 @@ void OSystem_Dreamcast::update_cdrom()
// Dummy. The CD drive takes care of itself.
}
-uint32 OSystem_Dreamcast::property(int param, uint32 value)
+uint32 OSystem_Dreamcast::property(int param, Property *value)
{
switch(param) {