diff --git a/Coding-Style.md b/Coding-Style.md index 21fe10a..87cbae3 100644 --- a/Coding-Style.md +++ b/Coding-Style.md @@ -24,5 +24,5 @@ We recommend to follow these guidelines when writing code for RPCS3. They aren't * Pointers to the function `T (*)(t1 a1, t2 a2)` are `mem_func_ptr_t` * Allocate memory with *MemoryAllocator*. * Don't forget to switch endianness: That is, allocate `u32` with `MemoryAllocator>` -* Switch endianness on compile time if possible: +* Switch endianness of constants on compile time if possible: * When comparing `be_t x` with the constant `y`, use: `x.ToBE()` and `se32(y)` respectively to gain speed by switching endianness on `y` in compilation time. \ No newline at end of file