From f21ad40012cf6b56ca1b52204fb3fe981810b181 Mon Sep 17 00:00:00 2001 From: bunnei Date: Tue, 20 May 2014 06:38:59 -0700 Subject: [PATCH] Removed "m_" and "s_" variable prefixes (this is not something we will be enforcing) --- Coding-Style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Coding-Style.md b/Coding-Style.md index 79a67d6..7d7b6db 100644 --- a/Coding-Style.md +++ b/Coding-Style.md @@ -12,7 +12,7 @@ Citra is a brand new project, so we have a great opportunity to keep things clea * CamelCase, "_" may also be used for clarity (e.g. ARM_InitCore) * Variables * lower_case_underscored - * Prefixes: "g_" if global, "s_" if static, "m_" if member, "_" if internal, "__" if ultra internal + * Prefixes: "g_" if global, "_" if internal, "__" if ultra internal * Classes * CamelCase, "_" may also be used for clarity (e.g. OGL_VideoInterface) * Files/Folders