diff options
-rw-r--r-- | saedit/grounds/earth.png (renamed from saedit/backgrounds/earth.png) | bin | 4193 -> 4193 bytes | |||
-rw-r--r-- | saedit/grounds/grass.png (renamed from saedit/backgrounds/grass.png) | bin | 5142 -> 5142 bytes | |||
-rw-r--r-- | saedit/grounds/sand.png (renamed from saedit/backgrounds/sand.png) | bin | 5205 -> 5205 bytes | |||
-rw-r--r-- | saedit/grounds/water.png (renamed from saedit/backgrounds/water.png) | bin | 7945 -> 7945 bytes | |||
-rw-r--r-- | saedit/main.c | 2 | ||||
-rw-r--r-- | saedit/main.h | 2 |
6 files changed, 2 insertions, 2 deletions
diff --git a/saedit/backgrounds/earth.png b/saedit/grounds/earth.png Binary files differindex 9bdb25a..9bdb25a 100644 --- a/saedit/backgrounds/earth.png +++ b/saedit/grounds/earth.png diff --git a/saedit/backgrounds/grass.png b/saedit/grounds/grass.png Binary files differindex a0f3ab5..a0f3ab5 100644 --- a/saedit/backgrounds/grass.png +++ b/saedit/grounds/grass.png diff --git a/saedit/backgrounds/sand.png b/saedit/grounds/sand.png Binary files differindex 31be5db..31be5db 100644 --- a/saedit/backgrounds/sand.png +++ b/saedit/grounds/sand.png diff --git a/saedit/backgrounds/water.png b/saedit/grounds/water.png Binary files differindex 20da6b4..20da6b4 100644 --- a/saedit/backgrounds/water.png +++ b/saedit/grounds/water.png diff --git a/saedit/main.c b/saedit/main.c index 1f43b3e..4833081 100644 --- a/saedit/main.c +++ b/saedit/main.c @@ -394,7 +394,7 @@ void set_up_imageset_by_node(XMLNode *node) { if (list != NULL) { gchar *ground_attr = xml_node_get_attr_value((XMLNode *)list->data, "ground"); if (ground_attr != NULL) { - ground_attr = g_strjoin(NULL, DIR_BACKGROUNDS, SEPARATOR_SLASH, ground_attr, ".png", NULL); + ground_attr = g_strjoin(NULL, DIR_GROUNDS, SEPARATOR_SLASH, ground_attr, ".png", NULL); GdkPixbuf *pbuf = gdk_pixbuf_new_from_file(ground_attr, NULL); if(pbuf != NULL) imageset->ground = pbuf; diff --git a/saedit/main.h b/saedit/main.h index 76662a9..e1d0633 100644 --- a/saedit/main.h +++ b/saedit/main.h @@ -22,7 +22,7 @@ const int MIN_HEIGHT = 600; const int SPRITE_WIDTH_DEFAULT = 64; const int SPRITE_HEIGHT_DEFAULT = 64; const int GRID_SIZE = 32; -const gchar *DIR_BACKGROUNDS = "backgrounds"; +const gchar *DIR_GROUNDS = "grounds"; const gchar *FILE_ICON = "icon.svg"; const gchar *FILE_CONFIG = "saedit/config.ini"; const gchar *POSTFIX_FOLDER = "..."; |