This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/desmume/src/arm_instructions.cpp b/desmume/src/arm_instructions.cpp | |
| index e413393d..2ac9e6c0 100644 | |
| --- a/desmume/src/arm_instructions.cpp | |
| +++ b/desmume/src/arm_instructions.cpp | |
| @@ -5752,6 +5752,13 @@ TEMPLATE static u32 FASTCALL OP_STMDB_W(const u32 i) | |
| u32 c = 0, b; | |
| u32 start = cpu->R[REG_POS(i,16)]; | |
| + #ifdef HAVE_LUA | |
| + if (REG_POS(i, 16) == 13 && BIT_N(i, 14) && PROCNUM == 0) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| namespace delion\discord; | |
| use React\EventLoop\Factory as LoopFactory; | |
| use Discord\Discord; | |
| use Discord\Parts\Channel\Channel; | |
| define('BOT_TOKEN', ''); | |
| define('BOT_CHANNEL', ''); |