diff options
author | pi1024e <49824824+pi1024e@users.noreply.github.com> | 2020-08-29 13:19:29 -0400 |
---|---|---|
committer | pi1024e <49824824+pi1024e@users.noreply.github.com> | 2020-08-29 13:19:29 -0400 |
commit | 6d153c6b91da45c31d4d6cd20b534bb7ee78c4e3 (patch) | |
tree | 2f5a487ffe03970d2cef46452aad82dfea34f181 /src | |
parent | bdb976dc27b00a7e86c0bda10911c67c9d296c35 (diff) |
Remove const
Diffstat (limited to 'src')
-rw-r--r-- | src/m4a.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -514,7 +514,7 @@ void m4aSoundVSyncOff(void) void m4aSoundVSyncOn(void) { struct SoundInfo *soundInfo = SOUND_INFO_PTR; - const u32 ident = soundInfo->ident; + u32 ident = soundInfo->ident; if (ident == ID_NUMBER) return; |