Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 179649
Collapse All | Expand All

(-)ioquake3_1.34-rc3/code/tools/asm/cmdlib.c (-4 lines)
Lines 312-319 char *ExpandArg (const char *path) Link Here
312
char *ExpandPath (const char *path)
312
char *ExpandPath (const char *path)
313
{
313
{
314
	static char full[1024];
314
	static char full[1024];
315
	if (!qdir)
316
		Error ("ExpandPath called without qdir set");
317
	if (path[0] == '/' || path[0] == '\\' || path[1] == ':') {
315
	if (path[0] == '/' || path[0] == '\\' || path[1] == ':') {
318
		strcpy( full, path );
316
		strcpy( full, path );
319
		return full;
317
		return full;
Lines 325-332 char *ExpandPath (const char *path) Link Here
325
char *ExpandGamePath (const char *path)
323
char *ExpandGamePath (const char *path)
326
{
324
{
327
	static char full[1024];
325
	static char full[1024];
328
	if (!qdir)
329
		Error ("ExpandGamePath called without qdir set");
330
	if (path[0] == '/' || path[0] == '\\' || path[1] == ':') {
326
	if (path[0] == '/' || path[0] == '\\' || path[1] == ':') {
331
		strcpy( full, path );
327
		strcpy( full, path );
332
		return full;
328
		return full;

Return to bug 179649