diff options
author | Franklin Wei <franklin@rockbox.org> | 2020-02-01 22:11:39 -0500 |
---|---|---|
committer | Franklin Wei <franklin@rockbox.org> | 2020-02-01 22:11:56 -0500 |
commit | f8cd15e226500abc7d2f93a1ae0818aee5287527 (patch) | |
tree | ab6980029d2bb9d14da382ae57de40dadc4179c9 | |
parent | 05a40ab07c3f7784e62fc2651d49bb0ff735c2f3 (diff) |
sdl: disable alignment trap
Apparently causing issues on some devices.
Change-Id: I6adb65513bf65c559a0fa8980e693f1e5324d4ad
-rw-r--r-- | apps/plugins/sdl/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/sdl/main.c b/apps/plugins/sdl/main.c index 4ae640356d..72ef841900 100644 --- a/apps/plugins/sdl/main.c +++ b/apps/plugins/sdl/main.c @@ -176,7 +176,7 @@ enum plugin_status plugin_start(const void *param) #if defined(CPU_ARM) && !defined(SIMULATOR) && (ARM_ARCH >= 5) /* (don't) set alignment trap. Will generate a data abort * exception on ARM. */ - set_cr(get_cr() | CR_A); +// set_cr(get_cr() | CR_A); #endif #if 0 |