mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-22 12:22:12 +00:00
Elder:
Fixed a bool that was set to qtrue -- should be qfalse for mods (relates to CD key)
This commit is contained in:
parent
5f3e8c1380
commit
1981b279da
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ int vmMain( int command, int arg0, int arg1, int arg2, int arg3, int arg4, int a
|
||||||
UI_DrawConnectScreen( arg0 );
|
UI_DrawConnectScreen( arg0 );
|
||||||
return 0;
|
return 0;
|
||||||
case UI_HASUNIQUECDKEY: // mod authors need to observe this
|
case UI_HASUNIQUECDKEY: // mod authors need to observe this
|
||||||
return qtrue; // bk010117 - change this to qfalse for mods!
|
return qfalse; // bk010117 - change this to qfalse for mods!
|
||||||
}
|
}
|
||||||
|
|
||||||
return -1;
|
return -1;
|
||||||
|
|
Loading…
Reference in a new issue