medfall

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 523921df66308267460052ff9b222914ac913369
parent 01ec5d0435c43892e2131f4d3b0448aa31fe6cb0
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Sat Nov  5 16:38:29 +0200

Fix bsp_init prototype

Diffstat:
bsp.h | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/bsp.h b/bsp.h @@ -1,7 +1,6 @@ #ifndef _BSP_H_ #define _BSP_H_ -#include <string> #include <glm/glm.hpp> #include "intrinsics.h" @@ -213,7 +212,7 @@ public: bool trace_seg( const glm::vec3 & start, const glm::vec3 & end, Intersection & is ) const; }; -void bsp_init( BSP * bsp, std::string filename ); +void bsp_init( BSP * bsp, const char * filename ); void bsp_destroy( BSP * bsp ); #endif // _BSP_H_