fix the build

This commit is contained in:
beirich 2011-06-10 02:41:46 +00:00
parent 079f9d9958
commit 806095669e
1 changed files with 2 additions and 2 deletions

View File

@ -91,8 +91,8 @@ namespace BizHawk
get { return arr[index]; }
set { arr[index] = value; }
#else
set { Write32(index, value); }
get { return Write32(index);}
set { Write32(index, (uint) value); }
get { return (int)Read32(index);}
#endif
}
}