diff --git a/dat/fleet.xml b/dat/fleet.xml index 756a9ce..342588e 100644 --- a/dat/fleet.xml +++ b/dat/fleet.xml @@ -28,7 +28,7 @@ pirate Pirate - Merchant Ship + Leapard diff --git a/dat/ship.xml b/dat/ship.xml index e238189..bbda53d 100644 --- a/dat/ship.xml +++ b/dat/ship.xml @@ -5,12 +5,12 @@ minimal 1 - 400 - 180 + 320 + 150 360 - 50 + 70 80 240 80 @@ -21,11 +21,38 @@ 2 7 20 - 20 + 25 - laser + laser + + + leapard + minimal + 1 + + 400 + 180 + 380 + + + 50 + 60 + 180 + 100 + 60 + 40 + + + 2 + 5 + 25 + 10 + + + laser + ship1 diff --git a/gfx/ship/leapard.png b/gfx/ship/leapard.png new file mode 100644 index 0000000..e8ce4ca Binary files /dev/null and b/gfx/ship/leapard.png differ diff --git a/gfx/ship/leapard_target.png b/gfx/ship/leapard_target.png new file mode 100644 index 0000000..d3ef325 Binary files /dev/null and b/gfx/ship/leapard_target.png differ diff --git a/gfx/ship/ship1_target.xcf b/gfx/ship/ship1_target.xcf deleted file mode 100644 index 892ccd3..0000000 Binary files a/gfx/ship/ship1_target.xcf and /dev/null differ diff --git a/gfx/ship/ship_target.xcf b/gfx/ship/ship_target.xcf deleted file mode 100644 index 6082179..0000000 Binary files a/gfx/ship/ship_target.xcf and /dev/null differ diff --git a/src/joystick.c b/src/joystick.c index 96e9293..47d74ff 100644 --- a/src/joystick.c +++ b/src/joystick.c @@ -50,7 +50,7 @@ int joystick_init(void) { // Figure out how many joysticks there are. numjoysticks = SDL_NumJoysticks(); - LOG("%d joysticks detected", numjoysticks); + LOG("%d joystick%s detected", numjoysticks, (numjoysticks==1)?"":"s"); for(i = 0; i < numjoysticks; i++) LOG("\t\t%d. %s", i, SDL_JoystickName(i));