mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
Merge pull request #2685 from lioncash/const
Arm64Emitter: Add a missing const specifier for an array table
This commit is contained in:
commit
c53e7f2842
1 changed files with 1 additions and 1 deletions
|
@ -406,7 +406,7 @@ static const u32 LogicalEnc[][2] = {
|
|||
};
|
||||
|
||||
// Load/Store Exclusive
|
||||
static u32 LoadStoreExcEnc[][5] = {
|
||||
static const u32 LoadStoreExcEnc[][5] = {
|
||||
{0, 0, 0, 0, 0}, // STXRB
|
||||
{0, 0, 0, 0, 1}, // STLXRB
|
||||
{0, 0, 1, 0, 0}, // LDXRB
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue