mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-11 07:03:33 +02:00
Try to build fix
This commit is contained in:
+3
-2
@@ -56,10 +56,11 @@ GameScreen::~GameScreen() {
|
||||
}
|
||||
}
|
||||
|
||||
std::string int2hexstr(const int a) {
|
||||
const char* int2hexstr(const int a) {
|
||||
std::stringstream stream;
|
||||
stream << std::hex << a;
|
||||
return stream.str();
|
||||
auto s = stream.str();
|
||||
return s.c_str();
|
||||
}
|
||||
|
||||
void GameScreen::update() {
|
||||
|
||||
Reference in New Issue
Block a user