Skip to content

Commit

Permalink
BLADERUNNER: fixed compilation without c++11
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkohaut committed Mar 29, 2017
1 parent d42b398 commit baeb412
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion engines/bladerunner/bladerunner.h
Expand Up @@ -36,7 +36,7 @@

namespace BladeRunner {

enum AnimationModes : int {
enum AnimationModes {
kAnimationModeIdle = 0,
kAnimationModeWalk = 1,
kAnimationModeRun = 2,
Expand Down
10 changes: 5 additions & 5 deletions engines/bladerunner/script/script.h
Expand Up @@ -29,7 +29,7 @@

namespace BladeRunner {

enum Actors : int {
enum Actors {
kActorMcCoy = 0,
kActorSteele = 1,
kActorGordo = 2,
Expand Down Expand Up @@ -106,7 +106,7 @@ enum Actors : int {
kActorVoiceOver = 99
};

enum Clues : int {
enum Clues {
kClueOfficersStatement = 0,
kClueDoorForced1 = 1,
kClueDoorForced2 = 2,
Expand Down Expand Up @@ -397,14 +397,14 @@ enum Clues : int {
kClueCrazylegGgrovels = 287,
};

enum ClueTypes: int{
enum ClueTypes {
kClueTypePhotograph = 0,
kClueTypeVideoClip = 1,
kClueTypeAudioRecording = 2,
kClueTypeObject = 3
};

enum Crimes : int {
enum Crimes {
kCrimeAnimalMurder = 0,
kCrimeEisendullerMurder = 1,
kCrimeArmsDealing = 2,
Expand All @@ -416,7 +416,7 @@ enum Crimes : int {
kCrimeMoonbusHijacking = 8
};

enum SpinnerDestinations : int {
enum SpinnerDestinations {
kSpinnerDestinationPoliceStation = 0,
kSpinnerDestinationMcCoysApartment = 1,
kSpinnerDestinationRuncitersAnimals = 2,
Expand Down

0 comments on commit baeb412

Please sign in to comment.