aboutsummaryrefslogtreecommitdiff
path: root/source/fxemu.c
diff options
context:
space:
mode:
authortwinaphex2017-08-14 08:43:57 +0200
committertwinaphex2017-08-14 08:43:57 +0200
commit4b0bf2bc68a317b98382823ea2b7dd2e77ec8d37 (patch)
treec60c664807d9ba0f1b847003a49a876625be5035 /source/fxemu.c
parent78b32e05a8e3c221279ba40c8f19d762420be8a6 (diff)
downloadsnes9x2005-4b0bf2bc68a317b98382823ea2b7dd2e77ec8d37.tar.gz
snes9x2005-4b0bf2bc68a317b98382823ea2b7dd2e77ec8d37.tar.bz2
snes9x2005-4b0bf2bc68a317b98382823ea2b7dd2e77ec8d37.zip
Rewrite C++ comments
Diffstat (limited to 'source/fxemu.c')
-rw-r--r--source/fxemu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fxemu.c b/source/fxemu.c
index 1a6ca7b..dd798fd 100644
--- a/source/fxemu.c
+++ b/source/fxemu.c
@@ -22,7 +22,7 @@ void fx_flushCache(void)
void fx_updateRamBank(uint8_t Byte)
{
- // Update BankReg and Bank pointer
+ /* Update BankReg and Bank pointer */
GSU.vRamBankReg = (uint32_t) Byte & (FX_RAM_BANKS - 1);
GSU.pvRamBank = GSU.apvRamBank[Byte & 0x3];
}