diff options
Diffstat (limited to 'common')
-rw-r--r-- | common/util.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/util.cpp b/common/util.cpp index a0144868db..c16e774e43 100644 --- a/common/util.cpp +++ b/common/util.cpp @@ -531,5 +531,10 @@ void NORETURN error(const char *s, ...) { if (g_system) g_system->quit(); +#if defined(SAMSUNGTV) + // FIXME + for (;;) {} +#else exit(1); +#endif } |