mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Fix vid renderer plugin types
I guess that plugin type is currently not checked, otherwise I doubt the mistake would have gone unnoticed.
This commit is contained in:
parent
940ef833ae
commit
77afc30486
5 changed files with 5 additions and 5 deletions
|
@ -166,7 +166,7 @@ static plugin_data_t plugin_info_data = {
|
|||
};
|
||||
|
||||
static plugin_t plugin_info = {
|
||||
qfp_snd_render,
|
||||
qfp_vid_render,
|
||||
0,
|
||||
QFPLUGIN_VERSION,
|
||||
"0.1",
|
||||
|
|
|
@ -166,7 +166,7 @@ static plugin_data_t plugin_info_data = {
|
|||
};
|
||||
|
||||
static plugin_t plugin_info = {
|
||||
qfp_snd_render,
|
||||
qfp_vid_render,
|
||||
0,
|
||||
QFPLUGIN_VERSION,
|
||||
"0.1",
|
||||
|
|
|
@ -156,7 +156,7 @@ static plugin_data_t plugin_info_data = {
|
|||
};
|
||||
|
||||
static plugin_t plugin_info = {
|
||||
qfp_snd_render,
|
||||
qfp_vid_render,
|
||||
0,
|
||||
QFPLUGIN_VERSION,
|
||||
"0.1",
|
||||
|
|
|
@ -161,7 +161,7 @@ static plugin_data_t plugin_info_data = {
|
|||
};
|
||||
|
||||
static plugin_t plugin_info = {
|
||||
qfp_snd_render,
|
||||
qfp_vid_render,
|
||||
0,
|
||||
QFPLUGIN_VERSION,
|
||||
"0.1",
|
||||
|
|
|
@ -175,7 +175,7 @@ static plugin_data_t plugin_info_data = {
|
|||
};
|
||||
|
||||
static plugin_t plugin_info = {
|
||||
qfp_snd_render,
|
||||
qfp_vid_render,
|
||||
0,
|
||||
QFPLUGIN_VERSION,
|
||||
"0.1",
|
||||
|
|
Loading…
Reference in a new issue