mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-01 11:31:15 +00:00
remove a change thats not needed
This commit is contained in:
parent
3e47c9a779
commit
47704c89ec
@ -26,13 +26,8 @@
|
|||||||
static bool g_debugEnabled;
|
static bool g_debugEnabled;
|
||||||
static bool g_debugPaused;
|
static bool g_debugPaused;
|
||||||
static bool g_debugDoStep;
|
static bool g_debugDoStep;
|
||||||
|
|
||||||
#ifdef __vita__ // cant have multiple windows
|
|
||||||
SDL_Window* window;
|
|
||||||
#else
|
|
||||||
static SDL_Window* g_debugWindow;
|
static SDL_Window* g_debugWindow;
|
||||||
static SDL_Renderer* g_debugRenderer;
|
static SDL_Renderer* g_debugRenderer;
|
||||||
#endif
|
|
||||||
|
|
||||||
static SDL_Texture* g_videoPalette;
|
static SDL_Texture* g_videoPalette;
|
||||||
static IDirect3DRMMiniwinDevice* g_d3drmMiniwinDevice;
|
static IDirect3DRMMiniwinDevice* g_d3drmMiniwinDevice;
|
||||||
|
|||||||
@ -12,7 +12,7 @@
|
|||||||
|
|
||||||
#define SCE_ERR(func, ...) \
|
#define SCE_ERR(func, ...) \
|
||||||
({ \
|
({ \
|
||||||
DEBUG_ONLY_PRINTF("%s\n", func); \
|
DEBUG_ONLY_PRINTF("%s\n", #func); \
|
||||||
int __sce_err_ret_val = func(__VA_ARGS__); \
|
int __sce_err_ret_val = func(__VA_ARGS__); \
|
||||||
if (__sce_err_ret_val < 0) { \
|
if (__sce_err_ret_val < 0) { \
|
||||||
sceClibPrintf(#func " error: 0x%x\n", __sce_err_ret_val); \
|
sceClibPrintf(#func " error: 0x%x\n", __sce_err_ret_val); \
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user