Patch by <balinor@pnxs.de>:
[supertux.git] / src / badguy / flame.cpp
index 0bd892b..b17cdb5 100644 (file)
@@ -20,7 +20,7 @@
 
 #include <config.h>
 
-#include "flame.h"
+#include "flame.hpp"
 
 Flame::Flame(const lisp::Lisp& reader)
   : angle(0), radius(100), speed(2), source(0)
@@ -69,7 +69,7 @@ void
 Flame::activate()
 {
   delete source;
-  source = sound_manager->create_sound_source("sounds/flame.wav");
+  source = sound_manager->create_sound_source("sounds/flame.ogg");
   if(!source) {
     std::cerr << "Couldn't start flame sound.\n";
     return;