aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/kernel/persistenceservice.h
diff options
context:
space:
mode:
authorEugene Sandulenko2010-09-02 12:14:04 +0000
committerEugene Sandulenko2010-10-12 23:30:00 +0000
commit086f5961b6575c50bb386750b6e9a3ed1efdd8cd (patch)
tree75c532790d67ccd3b8fdc5c371a3ce3bf0705dca /engines/sword25/kernel/persistenceservice.h
parent0cdb2ded85d17150cb108a5d63dd8957c29af2a5 (diff)
downloadscummvm-rg350-086f5961b6575c50bb386750b6e9a3ed1efdd8cd.tar.gz
scummvm-rg350-086f5961b6575c50bb386750b6e9a3ed1efdd8cd.tar.bz2
scummvm-rg350-086f5961b6575c50bb386750b6e9a3ed1efdd8cd.zip
SWORD25: unsigned int -> uint
svn-id: r53309
Diffstat (limited to 'engines/sword25/kernel/persistenceservice.h')
-rw-r--r--engines/sword25/kernel/persistenceservice.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/sword25/kernel/persistenceservice.h b/engines/sword25/kernel/persistenceservice.h
index 06d5422d46..d14185eac2 100644
--- a/engines/sword25/kernel/persistenceservice.h
+++ b/engines/sword25/kernel/persistenceservice.h
@@ -62,17 +62,17 @@ public:
// Interface
// -----------------------------------------------------------------------------
- static unsigned int GetSlotCount();
+ static uint GetSlotCount();
static Common::String GetSavegameDirectory();
void ReloadSlots();
- bool IsSlotOccupied(unsigned int SlotID);
- bool IsSavegameCompatible(unsigned int SlotID);
- Common::String &GetSavegameDescription(unsigned int SlotID);
- Common::String &GetSavegameFilename(unsigned int SlotID);
+ bool IsSlotOccupied(uint SlotID);
+ bool IsSavegameCompatible(uint SlotID);
+ Common::String &GetSavegameDescription(uint SlotID);
+ Common::String &GetSavegameFilename(uint SlotID);
- bool SaveGame(unsigned int SlotID, const Common::String &ScreenshotFilename);
- bool LoadGame(unsigned int SlotID);
+ bool SaveGame(uint SlotID, const Common::String &ScreenshotFilename);
+ bool LoadGame(uint SlotID);
private:
struct Impl;