Add missing assert.h.

This commit is contained in:
Glenn Maynard
2002-08-23 01:06:36 +00:00
parent c4cbd08c05
commit b841bd7e82
3 changed files with 6 additions and 4 deletions
+3 -2
View File
@@ -12,13 +12,14 @@
#include "Font.h"
#include "IniFile.h"
#include <stdio.h>
#include "RageTextureManager.h"
#include "RageUtil.h"
#include "RageLog.h"
#include "RageException.h"
#include <stdio.h>
#include <assert.h>
Font::Font( const CString &sFontFilePath )
{
+1 -1
View File
@@ -16,7 +16,7 @@
#include "RageTexture.h"
#include "RageUtil.h"
#include <string.h>
#include <assert.h>
//-----------------------------------------------------------------------------
// RageTexture constructor
+2 -1
View File
@@ -10,11 +10,12 @@
-----------------------------------------------------------------------------
*/
#include <math.h>
#include <assert.h>
#include "Sprite.h"
#include "RageTextureManager.h"
#include "IniFile.h"
#include <math.h>
#include "RageLog.h"
#include "RageException.h"
#include "PrefsManager.h"