diff options
author | whiterandrek | 2018-05-11 17:48:22 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2018-06-28 23:51:32 +0200 |
commit | ed3fce3267da8037663e0441eeee9d9499da6f8b (patch) | |
tree | 685dbd7fa1b25be0f4312d5dc307c6f8057919a6 | |
parent | 52df3e15f83d503d42b9b19958009c4d7f9feca8 (diff) | |
download | scummvm-rg350-ed3fce3267da8037663e0441eeee9d9499da6f8b.tar.gz scummvm-rg350-ed3fce3267da8037663e0441eeee9d9499da6f8b.tar.bz2 scummvm-rg350-ed3fce3267da8037663e0441eeee9d9499da6f8b.zip |
PINK: fixed compilation error
-rw-r--r-- | engines/pink/objects/actors/pda_button_actor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/pink/objects/actors/pda_button_actor.h b/engines/pink/objects/actors/pda_button_actor.h index 15bf8ae7df..f1e244f3a7 100644 --- a/engines/pink/objects/actors/pda_button_actor.h +++ b/engines/pink/objects/actors/pda_button_actor.h @@ -27,7 +27,7 @@ namespace Pink { -class PDAButtonActor : Actor { +class PDAButtonActor : public Actor { public: enum Command {Null = 0, GoToPage = 1, Close = 2, Unk = 4}; |