diff options
author | Alcaro | 2017-01-17 00:37:18 +0100 |
---|---|---|
committer | GitHub | 2017-01-17 00:37:18 +0100 |
commit | 6e9a6c9b040035cdc7d015b8bdb21e920c811dca (patch) | |
tree | 73e7755d117b8dd9eea499977c632727deb20d00 /source/c4.c | |
parent | 7ed90abe19954aaf1fa56657a08e3cae4c8a67ce (diff) | |
parent | cbbfa871ae3d9db3852d9122a6d8355896c073ed (diff) | |
download | snes9x2005-6e9a6c9b040035cdc7d015b8bdb21e920c811dca.tar.gz snes9x2005-6e9a6c9b040035cdc7d015b8bdb21e920c811dca.tar.bz2 snes9x2005-6e9a6c9b040035cdc7d015b8bdb21e920c811dca.zip |
Merge pull request #26 from jamsilva/master
Cleanups v2
Diffstat (limited to 'source/c4.c')
-rw-r--r-- | source/c4.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/source/c4.c b/source/c4.c index 163341b..65d4c01 100644 --- a/source/c4.c +++ b/source/c4.c @@ -136,14 +136,3 @@ void C4Op0D() C41FYVal = (int16_t)(C41FYVal * tanval * 0.99); C41FXVal = (int16_t)(C41FXVal * tanval * 0.98); } - -#ifdef ZSNES_C4 -void C4LoaDMem(char* C4RAM) -{ - memmove(C4RAM + (READ_WORD(C4RAM + 0x1f45) & 0x1fff), - S9xGetMemPointer(READ_3WORD(C4RAM + 0x1f40)), - READ_WORD(C4RAM + 0x1f43)); -} -#endif - - |