From 24432511a9a4f259975bbf8b1b56d32c70f5b246 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandro=20S=C3=A1nchez=20Bach?= Date: Sun, 8 Jun 2014 02:55:28 -0700 Subject: [PATCH] Updated Coding Style (markdown) --- Coding-Style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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