Fix to have r3450 at least compile on linux 64 bits
This commit is contained in:
@@ -17,7 +17,7 @@ template <class T>
|
|||||||
std::string ToHex(T* pointer)
|
std::string ToHex(T* pointer)
|
||||||
{
|
{
|
||||||
std::ostringstream stream;
|
std::ostringstream stream;
|
||||||
stream << hex << showbase << setfill('0') << setw(8) << (int) pointer;
|
stream << hex << showbase << setfill('0') << setw(8) << (uint64_t) pointer;
|
||||||
return stream.str();
|
return stream.str();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
// Copyright (c) 2007 James Hui (a.k.a. Dr.Watson) <jhkhui@gmail.com>
|
// Copyright (c) 2007 James Hui (a.k.a. Dr.Watson) <jhkhui@gmail.com>
|
||||||
//
|
//
|
||||||
//-------------------------------------------------------------------------------------
|
//-------------------------------------------------------------------------------------
|
||||||
|
#undef GL_VERSION_2_0
|
||||||
|
|
||||||
#include "../include/JFileSystem.h"
|
#include "../include/JFileSystem.h"
|
||||||
#include "../include/JRenderer.h"
|
#include "../include/JRenderer.h"
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
#include "utils.h"
|
#include "utils.h"
|
||||||
#include "WCachedResource.h"
|
#include "WCachedResource.h"
|
||||||
#include "WFont.h"
|
#include "WFont.h"
|
||||||
|
#include "JLogger.h"
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
|
|
||||||
#include "Threading.h"
|
#include "Threading.h"
|
||||||
|
|||||||
Reference in New Issue
Block a user