aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/statusba.h
diff options
context:
space:
mode:
authorSimei Yin2017-07-20 10:39:24 +0200
committerSimei Yin2017-07-20 19:10:01 +0200
commitcaa51ef49af5f6e92169a2f8095c08325823cb44 (patch)
tree9e2b060bf7d325d84a9b212416b36916ceaad277 /engines/sludge/statusba.h
parent9752d7bb43f41106147e7a39e0381fae51443c94 (diff)
downloadscummvm-rg350-caa51ef49af5f6e92169a2f8095c08325823cb44.tar.gz
scummvm-rg350-caa51ef49af5f6e92169a2f8095c08325823cb44.tar.bz2
scummvm-rg350-caa51ef49af5f6e92169a2f8095c08325823cb44.zip
SLUDGE: Change all structure names to Uppercase
Diffstat (limited to 'engines/sludge/statusba.h')
-rw-r--r--engines/sludge/statusba.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/sludge/statusba.h b/engines/sludge/statusba.h
index 96404fca05..2f98f366f0 100644
--- a/engines/sludge/statusba.h
+++ b/engines/sludge/statusba.h
@@ -26,13 +26,13 @@
namespace Sludge {
-struct statusBar {
+struct StatusBar {
Common::String text;
- statusBar *next;
+ StatusBar *next;
};
-struct statusStuff {
- statusBar *firstStatusBar;
+struct StatusStuff {
+ StatusBar *firstStatusBar;
uint16 alignStatus;
int litStatus;
int statusX, statusY;
@@ -58,8 +58,8 @@ bool loadStatusBars(Common::SeekableReadStream *stream);
void saveStatusBars(Common::WriteStream *stream);
// For freezing
-void restoreBarStuff(statusStuff *here);
-statusStuff *copyStatusBarStuff(statusStuff *here);
+void restoreBarStuff(StatusStuff *here);
+StatusStuff *copyStatusBarStuff(StatusStuff *here);
} // End of namespace Sludge