aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/kernel/outputpersistenceblock.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2013-09-28 22:26:54 +0300
committerEugene Sandulenko2013-09-28 22:26:54 +0300
commit4552f5196b83b079fea4446604d8b2ca7d819bf7 (patch)
tree5468c919cf10b74adc64049079a741dc8084f960 /engines/sword25/kernel/outputpersistenceblock.cpp
parent75f2dacade8f733719c8dbfc1caacd0bc9a232da (diff)
downloadscummvm-rg350-4552f5196b83b079fea4446604d8b2ca7d819bf7.tar.gz
scummvm-rg350-4552f5196b83b079fea4446604d8b2ca7d819bf7.tar.bz2
scummvm-rg350-4552f5196b83b079fea4446604d8b2ca7d819bf7.zip
SWORD25: Fix Amiga compilation
Diffstat (limited to 'engines/sword25/kernel/outputpersistenceblock.cpp')
-rw-r--r--engines/sword25/kernel/outputpersistenceblock.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword25/kernel/outputpersistenceblock.cpp b/engines/sword25/kernel/outputpersistenceblock.cpp
index e29d956e5f..48d0ab3d53 100644
--- a/engines/sword25/kernel/outputpersistenceblock.cpp
+++ b/engines/sword25/kernel/outputpersistenceblock.cpp
@@ -41,13 +41,13 @@ OutputPersistenceBlock::OutputPersistenceBlock() {
_data.reserve(INITIAL_BUFFER_SIZE);
}
-void OutputPersistenceBlock::write(signed int value) {
+void OutputPersistenceBlock::write(int32 value) {
writeMarker(SINT_MARKER);
value = TO_LE_32(value);
rawWrite(&value, sizeof(value));
}
-void OutputPersistenceBlock::write(uint value) {
+void OutputPersistenceBlock::write(uint32 value) {
writeMarker(UINT_MARKER);
value = TO_LE_32(value);
rawWrite(&value, sizeof(value));