[NSW] remove checks for running under Mephisto, since not only do they prevent us from running under Yuzu, but we don't have libtransistor_context anymore

This commit is contained in:
misson20000 2018-01-22 20:29:30 -08:00
parent 2440b6198d
commit 5f8c888e0f

View File

@ -69,9 +69,7 @@ static void *switch_init(const video_info_t *video,
RARCH_LOG("loading switch gfx driver, width: %d, height: %d\n", video->width, video->height);
if (libtransistor_context.magic != LIBTRANSISTOR_CONTEXT_MAGIC)
RARCH_LOG("running under CTU, skipping graphics init...\n");
else if(has_initialized)
if(has_initialized)
RARCH_LOG("global graphics were already initialized; skipping...\n");
else
{
@ -219,12 +217,6 @@ static bool switch_frame(void *data, const void *frame,
}
#endif
if (libtransistor_context.magic != LIBTRANSISTOR_CONTEXT_MAGIC)
{
RARCH_LOG("running under CTU; skipping frame\n");
return true;
}
if (msg != NULL && strlen(msg) > 0)
RARCH_LOG("message: %s\n", msg);