diff options
Diffstat (limited to 'engines/agi/console.cpp')
-rw-r--r-- | engines/agi/console.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/agi/console.cpp b/engines/agi/console.cpp index 37e9258136..d14a4a13bf 100644 --- a/engines/agi/console.cpp +++ b/engines/agi/console.cpp @@ -135,7 +135,7 @@ bool Console::Cmd_Crc(int argc, const char **argv) { bool Console::Cmd_Agiver(int argc, const char **argv) { int ver, maj, min; - ver = _vm->agiGetRelease(); + ver = _vm->getVersion(); maj = (ver >> 12) & 0xf; min = ver & 0xfff; |