diff options
author | Eugene Sandulenko | 2019-07-02 00:51:23 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2019-09-03 17:17:07 +0200 |
commit | 2c520373d93e6f5b7f2cf717842fa4e9b99c446f (patch) | |
tree | bd86b5dc7e0293eb3a52e81489fd1d58f64fd865 | |
parent | d55370ac82768b2f733aab4e723bda08cb36bb44 (diff) | |
download | scummvm-rg350-2c520373d93e6f5b7f2cf717842fa4e9b99c446f.tar.gz scummvm-rg350-2c520373d93e6f5b7f2cf717842fa4e9b99c446f.tar.bz2 scummvm-rg350-2c520373d93e6f5b7f2cf717842fa4e9b99c446f.zip |
HDB: Rename map-loader.* -> map.*
-rw-r--r-- | engines/hdb/hdb.h | 2 | ||||
-rw-r--r-- | engines/hdb/map.cpp (renamed from engines/hdb/map-loader.cpp) | 0 | ||||
-rw-r--r-- | engines/hdb/map.h (renamed from engines/hdb/map-loader.h) | 0 | ||||
-rw-r--r-- | engines/hdb/module.mk | 2 |
4 files changed, 2 insertions, 2 deletions
diff --git a/engines/hdb/hdb.h b/engines/hdb/hdb.h index 6628848f22..d3e983b8b8 100644 --- a/engines/hdb/hdb.h +++ b/engines/hdb/hdb.h @@ -44,7 +44,7 @@ #include "hdb/file-manager.h" #include "hdb/input.h" #include "hdb/lua-script.h" -#include "hdb/map-loader.h" +#include "hdb/map.h" #include "hdb/window.h" #define MAX_SNDCACHE_MEM 0x400000 // 4Mb of sounds in memory diff --git a/engines/hdb/map-loader.cpp b/engines/hdb/map.cpp index e829b3de73..e829b3de73 100644 --- a/engines/hdb/map-loader.cpp +++ b/engines/hdb/map.cpp diff --git a/engines/hdb/map-loader.h b/engines/hdb/map.h index 151bef94d4..151bef94d4 100644 --- a/engines/hdb/map-loader.h +++ b/engines/hdb/map.h diff --git a/engines/hdb/module.mk b/engines/hdb/module.mk index e55658f7d1..57972cbf05 100644 --- a/engines/hdb/module.mk +++ b/engines/hdb/module.mk @@ -17,7 +17,7 @@ MODULE_OBJS := \ hdb.o \ input.o \ lua-script.o \ - map-loader.o \ + map.o \ window.o MODULE_DIRS += \ |