From 8ecd2ee39354ee1d641edceefa00c32c88a5e4bc Mon Sep 17 00:00:00 2001 From: riccardom Date: Thu, 16 Apr 2009 18:27:16 +0000 Subject: [PATCH] Put braces around a possible nop. --- desmume/src/MMU.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/desmume/src/MMU.cpp b/desmume/src/MMU.cpp index 753e4c89e..2bc652dd1 100644 --- a/desmume/src/MMU.cpp +++ b/desmume/src/MMU.cpp @@ -820,8 +820,9 @@ static inline void MMU_VRAMmapControl(u8 block, u8 VRAMBankCnt) //if texInfo changed, trigger notifications if(memcmp(&oldTexInfo,&ARM9Mem.texInfo,sizeof(ARM9_struct::TextureInfo))) { - if(!nds.isIn3dVblank()) + if(!nds.isIn3dVblank()) { PROGINFO("Changing texture or texture palette mappings outside of 3d vblank\n"); + } gpu3D->NDS_3D_VramReconfigureSignal(); }