make useless comment less confusing (nw)

This commit is contained in:
hap 2019-06-17 02:56:21 +02:00
parent 10060c3636
commit c7b469518d
6 changed files with 6 additions and 6 deletions

View File

@ -145,7 +145,7 @@ struct copy_info_t
copy_info_t *next;
};
/* sdl_info is the information about SDL for the current screen */
/* renderer_sdl2 is the information about SDL for the current screen */
class renderer_sdl2 : public osd_renderer
{
public:

View File

@ -30,7 +30,7 @@ class bgfx_view;
class osd_options;
class avi_write;
/* sdl_info is the information about SDL for the current screen */
/* renderer_bgfx is the information about BGFX for the current screen */
class renderer_bgfx : public osd_renderer, public slider_dirty_notifier
{
public:

View File

@ -48,7 +48,7 @@ struct d3d_base
class shaders;
struct hlsl_options;
/* renderer is the information about Direct3D for the current screen */
/* renderer_d3d9 is the information about Direct3D for the current screen */
class renderer_d3d9 : public osd_renderer, public slider_dirty_notifier
{
public:

View File

@ -24,6 +24,7 @@
// TYPE DEFINITIONS
//============================================================
/* renderer_gdi is the information for the current screen */
class renderer_gdi : public osd_renderer
{
public:
@ -46,7 +47,6 @@ public:
virtual void toggle_fsfx() override {};
private:
/* gdi_info is the information for the current screen */
BITMAPINFO m_bminfo;
uint8_t * m_bmdata;
size_t m_bmsize;

View File

@ -91,7 +91,7 @@ public:
};
/* sdl_info is the information about SDL for the current screen */
/* renderer_ogl is the information about OpenGL for the current screen */
class renderer_ogl : public osd_renderer
{
public:

View File

@ -17,7 +17,7 @@
#include <SDL2/SDL.h>
/* renderer_sdl2 is the information about SDL for the current screen */
/* renderer_sdl1 is the information about SDL for the current screen */
class renderer_sdl1 : public osd_renderer
{
public: