diff options
Diffstat (limited to 'gob/init.cpp')
| -rw-r--r-- | gob/init.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/gob/init.cpp b/gob/init.cpp index 0cf6ee5c11..0c41abcaed 100644 --- a/gob/init.cpp +++ b/gob/init.cpp @@ -273,10 +273,10 @@ memBlocks	= word ptr -2*/  			free(game_totFileData);  		if (game_totTextData != 0) -			free((char *)game_totTextData); +			free(game_totTextData);  		if (game_totResourceTable != 0) -			free((char *)game_totResourceTable); +			free(game_totResourceTable);  	}  	for (i = 0; i < 4; i++) { @@ -284,7 +284,7 @@ memBlocks	= word ptr -2*/  			util_freeFont(draw_fonts[i]);  	} -	free((char *)init_palDesc); +	free(init_palDesc);  	data_closeDataFile();  	vid_initPrimary(-1);  	init_cleanup(); | 
