Fix linux GetEmbeddedResource not using address of file start/end

This commit is contained in:
baldurk
2014-11-14 23:22:36 +00:00
parent ac89399c60
commit fd9d11bc6d
+1 -1
View File
@@ -34,7 +34,7 @@
#define OS_DEBUG_BREAK() raise(SIGTRAP)
#define GetEmbeddedResource(filename) string( CONCAT(CONCAT(_binary_, filename), _start) , CONCAT(CONCAT(_binary_, filename), _end) )
#define GetEmbeddedResource(filename) string( &CONCAT(CONCAT(_binary_, filename), _start) , &CONCAT(CONCAT(_binary_, filename), _end) )
namespace OSUtility
{