Skip to content
Snippets Groups Projects
Commit bd5c943c authored by Yuri Kunde Schlesner's avatar Yuri Kunde Schlesner
Browse files

Merge pull request #843 from chinhodado/patch-2

Use correct style name: PascalCase instead of CamelCase
parents 54e69b89 b2f49cef
No related branches found
No related tags found
No related merge requests found
...@@ -10,16 +10,16 @@ Citra is a brand new project, so we have a great opportunity to keep things clea ...@@ -10,16 +10,16 @@ Citra is a brand new project, so we have a great opportunity to keep things clea
### Naming Rules ### Naming Rules
* Functions * Functions
* CamelCase, "_" may also be used for clarity (e.g. ARM_InitCore) * PascalCase, "_" may also be used for clarity (e.g. ARM_InitCore)
* Variables * Variables
* lower_case_underscored * lower_case_underscored
* Prefix "g_" if global * Prefix "g_" if global
* Classes * Classes
* CamelCase, "_" may also be used for clarity (e.g. OGL_VideoInterface) * PascalCase, "_" may also be used for clarity (e.g. OGL_VideoInterface)
* Files/Folders * Files/Folders
* lower_case_underscored * lower_case_underscored
* Namespaces * Namespaces
* CamelCase, "_" may also be used for clarity (e.g. ARM_InitCore) * PascalCase, "_" may also be used for clarity (e.g. ARM_InitCore)
### Indentation/Whitespace Style ### Indentation/Whitespace Style
Follow the indentation/whitespace style shown below. Do not use tabs, use 4-spaces instead. Follow the indentation/whitespace style shown below. Do not use tabs, use 4-spaces instead.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment