diff --git a/doomsday/engine/engine.pro b/doomsday/engine/engine.pro index 344c2f1137..2101ba18b3 100644 --- a/doomsday/engine/engine.pro +++ b/doomsday/engine/engine.pro @@ -459,6 +459,7 @@ SOURCES += \ src/dd_main.cpp \ src/dd_pinit.c \ src/dd_plugin.c \ + src/dd_wad.cpp \ src/def_data.c \ src/def_main.cpp \ src/def_read.cpp \ @@ -573,7 +574,6 @@ SOURCES += \ src/render/vignette.c \ src/resource/bitmapfont.c \ src/resource/colorpalette.c \ - src/resource/dd_wad.cpp \ src/resource/fonts.cpp \ src/resource/hq2x.c \ src/resource/image.cpp \ diff --git a/doomsday/engine/include/con_main.h b/doomsday/engine/include/con_main.h index d281aaf3e7..52ec129d9d 100644 --- a/doomsday/engine/include/con_main.h +++ b/doomsday/engine/include/con_main.h @@ -295,7 +295,7 @@ boolean Con_IsValidCommand(const char* name); /** * Attempt to execute a console command. * - * @param src The source of the command @see commandSource + * @param src The source of the command (@ref commandSource) * @param command The command to be executed. * @param silent Non-zero indicates not to log execution of the command. * @param netCmd If @c true, command was sent over the net. diff --git a/doomsday/engine/include/filesys/file.h b/doomsday/engine/include/filesys/file.h index 01f18abf4d..e1239f3aa9 100644 --- a/doomsday/engine/include/filesys/file.h +++ b/doomsday/engine/include/filesys/file.h @@ -38,7 +38,7 @@ namespace de { class LumpIndex; /** - * File. File is a core component of the filesystem intended for use as the base + * File1 is a core component of the filesystem intended for use as the base * for all types of (pseudo-)file resources. * * @ingroup fs diff --git a/doomsday/engine/include/resource/hq2x.h b/doomsday/engine/include/resource/hq2x.h index d76938954a..2627dfa4dc 100644 --- a/doomsday/engine/include/resource/hq2x.h +++ b/doomsday/engine/include/resource/hq2x.h @@ -41,7 +41,7 @@ void GL_InitSmartFilterHQ2x(void); * @param src R8G8B8A8 source image to be scaled. * @param width Width of the source image in pixels. * @param height Height of the source image in pixels. - * @param flags @see imageConversionFlags + * @param flags @ref imageConversionFlags */ uint8_t* GL_SmartFilterHQ2x(const uint8_t* src, int width, int height, int flags);