aboutsummaryrefslogtreecommitdiff
path: root/engines/gargoyle/scott/scott.h
diff options
context:
space:
mode:
authordreammaster2018-11-10 05:42:22 +0000
committerPaul Gilbert2018-12-08 19:05:59 -0800
commita8e656a5de01e18697fa4f0086215d11d9143197 (patch)
tree95387943edd3e57d8db031534dc4105de05e525c /engines/gargoyle/scott/scott.h
parent5ddf55da6cb9ba283229d2a06014ab5b88f6bfb4 (diff)
downloadscummvm-rg350-a8e656a5de01e18697fa4f0086215d11d9143197.tar.gz
scummvm-rg350-a8e656a5de01e18697fa4f0086215d11d9143197.tar.bz2
scummvm-rg350-a8e656a5de01e18697fa4f0086215d11d9143197.zip
GLK: astyle formatting
Diffstat (limited to 'engines/gargoyle/scott/scott.h')
-rw-r--r--engines/gargoyle/scott/scott.h34
1 files changed, 17 insertions, 17 deletions
diff --git a/engines/gargoyle/scott/scott.h b/engines/gargoyle/scott/scott.h
index 81847cce3f..0ff8d3318b 100644
--- a/engines/gargoyle/scott/scott.h
+++ b/engines/gargoyle/scott/scott.h
@@ -24,7 +24,7 @@
#define GARGOYLE_SCOTT
/*
- * Controlling block
+ * Controlling block
*/
#include "common/scummsys.h"
@@ -33,28 +33,28 @@
namespace Gargoyle {
namespace Scott {
-#define LIGHT_SOURCE 9 // Always 9 how odd
-#define CARRIED 255 // Carried
-#define DESTROYED 0 // Destroyed
-#define DARKBIT 15
-#define LIGHTOUTBIT 16 // Light gone out
+#define LIGHT_SOURCE 9 // Always 9 how odd
+#define CARRIED 255 // Carried
+#define DESTROYED 0 // Destroyed
+#define DARKBIT 15
+#define LIGHTOUTBIT 16 // Light gone out
enum GameOption {
- YOUARE = 1, ///< You are not I am
- SCOTTLIGHT = 2, ///< Authentic Scott Adams light messages
- DEBUGGING = 4, ///< Info from database load
- TRS80_STYLE = 8, ///< Display in style used on TRS-80
- PREHISTORIC_LAMP = 16 ///< Destroy the lamp (very old databases)
+ YOUARE = 1, ///< You are not I am
+ SCOTTLIGHT = 2, ///< Authentic Scott Adams light messages
+ DEBUGGING = 4, ///< Info from database load
+ TRS80_STYLE = 8, ///< Display in style used on TRS-80
+ PREHISTORIC_LAMP = 16 ///< Destroy the lamp (very old databases)
};
-#define TRS80_LINE "\n<------------------------------------------------------------>\n"
-#define MyLoc (GameHeader.PlayerRoom)
+#define TRS80_LINE "\n<------------------------------------------------------------>\n"
+#define MyLoc (GameHeader.PlayerRoom)
struct Header {
- int Unknown;
+ int Unknown;
int NumItems;
int NumActions;
- int NumWords; ///< Smaller of verb/noun is padded to same size
+ int NumWords; ///< Smaller of verb/noun is padded to same size
int NumRooms;
int MaxCarry;
int PlayerRoom;
@@ -90,7 +90,7 @@ struct Room {
};
struct Item {
- char *Text; // PORTABILITY WARNING: THESE TWO MUST BE 8 BIT VALUES.
+ char *Text; // PORTABILITY WARNING: THESE TWO MUST BE 8 BIT VALUES.
byte Location;
byte InitialLoc;
char *AutoGet;
@@ -125,7 +125,7 @@ private:
int SavedRoom;
int RoomSaved[16]; ///< Range unknown
int Options; ///< Option flags set
- int Width; ///< Terminal width
+ int Width; ///< Terminal width
int TopHeight; ///< Height of top window
bool split_screen;