Fixed a bool that was set to qtrue -- should be qfalse for mods (relates to CD key)
This commit is contained in:
Victor Chow 2001-08-02 21:58:12 +00:00
parent 5f3e8c1380
commit 1981b279da

View file

@ -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;