made gcc happy about an unused variable...

...and added some comment to the nop function
This commit is contained in:
Mark de Wever 2007-02-16 22:47:35 +00:00
parent ad05a5174a
commit 508bc9b72a

View File

@ -25,7 +25,8 @@ public:
cave_map_generator(const config* game_config);
bool allow_user_config() const { return true; }
void user_config(display& disp) { return; }
// This is a pure virtual function in the base class so must be here
void user_config(display& /* disp*/) { return; }
std::string name() const { return "cave"; }