log/main: Remove extra printf and custom heap

This commit is contained in:
Joel16 2022-06-28 20:48:38 -04:00
parent 4144652b09
commit c2d0028fb5
2 changed files with 1 additions and 4 deletions

View File

@ -35,8 +35,7 @@ namespace Log {
std::string error_string = "[ERROR] ";
error_string.append(buf);
sceClibPrintf("%s", error_string.c_str());
printf("%s", error_string.c_str());
sceClibPrintf("%s\n", error_string.c_str());
if (R_FAILED(sceIoWrite(log_file, error_string.data(), error_string.length())))
return;

View File

@ -10,8 +10,6 @@
#include "textures.h"
#include "utils.h"
int _newlib_heap_size_user = 192 * 1024 * 1024;
namespace Services {
void SetDefaultTheme(void) {
ImGui::GetStyle().FrameRounding = 4.0f;