remove a change thats not needed

This commit is contained in:
olebeck 2025-07-01 02:48:21 +02:00
parent 3e47c9a779
commit 47704c89ec
2 changed files with 1 additions and 6 deletions

View File

@ -26,13 +26,8 @@
static bool g_debugEnabled;
static bool g_debugPaused;
static bool g_debugDoStep;
#ifdef __vita__ // cant have multiple windows
SDL_Window* window;
#else
static SDL_Window* g_debugWindow;
static SDL_Renderer* g_debugRenderer;
#endif
static SDL_Texture* g_videoPalette;
static IDirect3DRMMiniwinDevice* g_d3drmMiniwinDevice;

View File

@ -12,7 +12,7 @@
#define SCE_ERR(func, ...) \
({ \
DEBUG_ONLY_PRINTF("%s\n", func); \
DEBUG_ONLY_PRINTF("%s\n", #func); \
int __sce_err_ret_val = func(__VA_ARGS__); \
if (__sce_err_ret_val < 0) { \
sceClibPrintf(#func " error: 0x%x\n", __sce_err_ret_val); \