diff --git a/gfx/planet/exterior/konosphere.png b/gfx/planet/exterior/konosphere.png index 20ccb16..36fa224 100644 Binary files a/gfx/planet/exterior/konosphere.png and b/gfx/planet/exterior/konosphere.png differ diff --git a/src/land.c b/src/land.c index 688733e..dbf9f03 100644 --- a/src/land.c +++ b/src/land.c @@ -20,7 +20,7 @@ void land(Planet* p) { // Pretty display. window_addText(land_wid, 0., -20., LAND_WIDTH, 1, "txtPlanet", NULL, &cBlack, p->name); - //window_addImage(land_wid, 20., -440, "imgPlanet", p->gfx_exterior); + window_addImage(land_wid, 20., -440, "imgPlanet", p->gfx_exterior); // Buttons. window_addButton(land_wid, -20, 20, BUTTON_WIDTH, BUTTON_HEIGHT, "btnTakeoff", "Takeoff", (void(*)(char*))takeoff); diff --git a/src/space.c b/src/space.c index 7fccac7..62a719d 100644 --- a/src/space.c +++ b/src/space.c @@ -21,7 +21,7 @@ #define SYSTEM_DATA "../dat/ssys.xml" #define PLANET_GFX_SPACE "../gfx/planet/space/" -#define PLANET_GFX_EXTERIOR "../gfx/planer/exterior/" +#define PLANET_GFX_EXTERIOR "../gfx/planet/exterior/" #define PLANET_GFX_EXTERIOR_W 400 #define PLANET_GFX_EXTERIOR_H 400