From eed80f794c438cc3ea3ae9154d5b2f6647b7f4d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandro=20S=C3=A1nchez=20Bach?= Date: Sat, 7 Jun 2014 07:33:19 -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 ee201b7..21fe10a 100644 --- a/Coding-Style.md +++ b/Coding-Style.md @@ -25,4 +25,4 @@ We recommend to follow these guidelines when writing code for RPCS3. They aren't * Allocate memory with *MemoryAllocator*. * Don't forget to switch endianness: That is, allocate `u32` with `MemoryAllocator>` * Switch endianness on compile time if possible: - * When comparing the type `be_t x` with the constant `y`, use: `x.ToBE()` and `se32(y)` respectively to gain speed by switching the endianness of the constant in compilation time. \ No newline at end of file + * 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