aboutsummaryrefslogtreecommitdiff
path: root/engines/cryomni3d/cryomni3d.h
diff options
context:
space:
mode:
authorLe Philousophe2019-05-26 18:29:57 +0200
committerEugene Sandulenko2019-06-01 22:43:48 +0200
commitff197718c239e10209d8eaf26c90c11af5ed1c80 (patch)
tree18a344711b6d3388cf450a41dc88f6a223640d33 /engines/cryomni3d/cryomni3d.h
parent222f6b0e4cd5afc3d6aae8210b71908b111fca19 (diff)
downloadscummvm-rg350-ff197718c239e10209d8eaf26c90c11af5ed1c80.tar.gz
scummvm-rg350-ff197718c239e10209d8eaf26c90c11af5ed1c80.tar.bz2
scummvm-rg350-ff197718c239e10209d8eaf26c90c11af5ed1c80.zip
CRYOMNI3D: Rename unsigned int to uint
Diffstat (limited to 'engines/cryomni3d/cryomni3d.h')
-rw-r--r--engines/cryomni3d/cryomni3d.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/engines/cryomni3d/cryomni3d.h b/engines/cryomni3d/cryomni3d.h
index 17e9cd39e3..12d42990da 100644
--- a/engines/cryomni3d/cryomni3d.h
+++ b/engines/cryomni3d/cryomni3d.h
@@ -107,8 +107,8 @@ public:
void fillSurface(byte color);
void setCursor(const Graphics::Cursor &cursor) const;
- void setCursor(unsigned int cursorId) const;
- typedef void (CryOmni3DEngine::*HNMCallback)(unsigned int frameNum);
+ void setCursor(uint cursorId) const;
+ typedef void (CryOmni3DEngine::*HNMCallback)(uint frameNum);
void playHNM(const Common::String &filename,
Audio::Mixer::SoundType soundType = Audio::Mixer::kPlainSoundType,
HNMCallback beforeDraw = nullptr, HNMCallback afterDraw = nullptr);
@@ -117,13 +117,13 @@ public:
bool pollEvents();
Common::Point getMousePos();
void setMousePos(const Common::Point &point);
- unsigned int getCurrentMouseButton();
+ uint getCurrentMouseButton();
Common::KeyState getNextKey();
bool checkKeysPressed();
- bool checkKeysPressed(unsigned int numKeys, ...);
+ bool checkKeysPressed(uint numKeys, ...);
void clearKeys() { _keysPressed.clear(); }
void waitMouseRelease();
- void setAutoRepeatClick(unsigned int millis);
+ void setAutoRepeatClick(uint millis);
DragStatus getDragStatus() { return _dragStatus; }
Common::String prepareFileName(const Common::String &baseName, const char *extension) const {
@@ -136,7 +136,7 @@ public:
virtual bool displayToolbar(const Graphics::Surface *original) = 0;
virtual bool hasPlaceDocumentation() = 0;
virtual bool displayPlaceDocumentation() = 0;
- virtual unsigned int displayOptions() = 0;
+ virtual uint displayOptions() = 0;
virtual bool shouldAbort() { return g_engine->shouldQuit(); }
virtual void makeTranslucent(Graphics::Surface &dst, const Graphics::Surface &src) const = 0;
@@ -161,11 +161,11 @@ protected:
DragStatus _dragStatus;
Common::Point _dragStart;
- unsigned int _autoRepeatNextEvent;
+ uint _autoRepeatNextEvent;
private:
- unsigned int _lockPaletteStartRW;
- unsigned int _lockPaletteEndRW;
+ uint _lockPaletteStartRW;
+ uint _lockPaletteEndRW;
};
} // End of namespace CryOmni3D