mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-22 20:02:09 +00:00
Fixed bug with shareware pak file
This commit is contained in:
parent
95dc2c6ebf
commit
24312dcadd
1 changed files with 2 additions and 5 deletions
|
@ -38,12 +38,9 @@ void register_check ()
|
||||||
|
|
||||||
COM_FOpenFile("gfx/pop.lmp", &h);
|
COM_FOpenFile("gfx/pop.lmp", &h);
|
||||||
|
|
||||||
if (!h) {
|
if (h) {
|
||||||
Con_Printf ("Playing shareware version.\n");
|
|
||||||
} else {
|
|
||||||
Cvar_Set ("registered", "1");
|
Cvar_Set ("registered", "1");
|
||||||
Con_Printf ("Playing registered version.\n");
|
Con_Printf ("Playing registered version.\n");
|
||||||
|
fclose (h);
|
||||||
}
|
}
|
||||||
|
|
||||||
fclose (h);
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue