aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/game.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2012-05-04 21:40:44 +1000
committerPaul Gilbert2012-05-04 21:40:44 +1000
commit557c43c2dbd6d830332be8c8b69c7660d53d665f (patch)
tree2765f08258989c21a34cd202b8169e0233bb6b2f /engines/tony/game.cpp
parenta75b873fdedd2167b4b6a47b1dd2988ce2e5d11c (diff)
downloadscummvm-rg350-557c43c2dbd6d830332be8c8b69c7660d53d665f.tar.gz
scummvm-rg350-557c43c2dbd6d830332be8c8b69c7660d53d665f.tar.bz2
scummvm-rg350-557c43c2dbd6d830332be8c8b69c7660d53d665f.zip
TONY: Converted anonymous structs to have explicit names
Diffstat (limited to 'engines/tony/game.cpp')
-rw-r--r--engines/tony/game.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/tony/game.cpp b/engines/tony/game.cpp
index 6853c53bf0..a1737cb089 100644
--- a/engines/tony/game.cpp
+++ b/engines/tony/game.cpp
@@ -93,10 +93,10 @@ bool bPatIrqFreeze;
/****************************************/
static char path_buffer[_MAX_PATH];
-static char drive[_MAX_DRIVE];
-static char dir[_MAX_DIR];
-static char fname[_MAX_FNAME];
-static char ext[_MAX_EXT];
+static char drive[MAX_DRIVE];
+static char dir[MAX_DIR];
+static char fname[MAX_FNAME];
+static char ext[MAX_EXT];
HANDLE MainLoadLocation(int nLoc, RMPoint pt, RMPoint start) {
return _vm->GetEngine()->LoadLocation(nLoc, pt,start);