the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
at master 20 lines 591 B view raw
1 2#pragma once 3#include <stdio.h> 4#include <libdbg.h> 5 6#ifdef _CONTENT_PACKAGE 7#define ORBIS_ASSERT(val) 8#elif defined(_RELEASE_FOR_ART) 9#define ORBIS_ASSERT(val) 10#else 11#define ORBIS_ASSERT(val) if(!(val)) { printf("------------------------------------------ \n"); \ 12 printf("Func : %s \n", __FUNCTION__); \ 13 printf("File : %s \n", __FILE__); \ 14 printf("Line : %d \n",__LINE__ ); \ 15 printf("assert(%s) failed!!!\n", #val); \ 16 printf("------------------------------------------ \n"); \ 17 SCE_BREAK(); } 18#endif 19 20#define assert ORBIS_ASSERT