diff --git a/assets/maps/downtown.tmx b/assets/maps/downtown.tmx
deleted file mode 100644
index 9381956e..00000000
--- a/assets/maps/downtown.tmx
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
diff --git a/assets/maps/train_station.tmx b/assets/maps/train_station.tmx
deleted file mode 100644
index a3b06e51..00000000
--- a/assets/maps/train_station.tmx
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
diff --git a/src/dawn/CMakeLists.txt b/src/dawn/CMakeLists.txt
index 029f42d7..0c19749c 100644
--- a/src/dawn/CMakeLists.txt
+++ b/src/dawn/CMakeLists.txt
@@ -34,7 +34,6 @@ target_sources(${DAWN_TARGET_NAME}
# Assets
tool_map(testmap maps/testmap.tmx)
tool_map(testmap2 maps/testmap2.tmx)
-tool_map(train_station maps/train_station.tmx)
tool_copy(en en.json)
add_dependencies(${DAWN_TARGET_NAME} dawnassets)
diff --git a/src/dawn/rpg/world/maplist.c b/src/dawn/rpg/world/maplist.c
index 8fb297dd..fe1cbcf2 100644
--- a/src/dawn/rpg/world/maplist.c
+++ b/src/dawn/rpg/world/maplist.c
@@ -11,7 +11,6 @@
const char_t * MAP_LIST_PATHS[] = {
"testmap.map",
"testmap2.map",
- "train_station.map"
};
const int32_t MAP_LIST_COUNT = sizeof(MAP_LIST_PATHS) / sizeof(char_t*);
diff --git a/src/dawn/rpg/world/maplist.h b/src/dawn/rpg/world/maplist.h
index 670f3f75..bf84f7d2 100644
--- a/src/dawn/rpg/world/maplist.h
+++ b/src/dawn/rpg/world/maplist.h
@@ -11,7 +11,6 @@
typedef enum {
MAP_LIST_TEST = 0,
MAP_LIST_TEST2 = 1,
- MAP_LIST_TRAIN_STATION = 2,
} maplist_t;
extern const char_t *MAP_LIST_PATHS[];