summaryrefslogtreecommitdiff
path: root/main.cpp
diff options
context:
space:
mode:
authorXaviDCR92 <xavi.dcr@gmail.com>2018-07-09 22:33:29 +0200
committerXaviDCR92 <xavi.dcr@gmail.com>2018-07-09 22:33:29 +0200
commit8ed9a3a57ad08bac4e8441b0b87ddc946296a3fd (patch)
tree185528a843f4e38d0cc73d8893f3fed7d5639ada /main.cpp
parentcd78b97bceaf6ecbbab6f89631c15ed712878d4d (diff)
Fixed "includes/defines/local variables" headers.
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp43
1 files changed, 28 insertions, 15 deletions
diff --git a/main.cpp b/main.cpp
index a6f0cc3..6b8f911 100644
--- a/main.cpp
+++ b/main.cpp
@@ -1,30 +1,43 @@
-/* **************************************
- * Includes *
- * **************************************/
+/* *******************************************************************
+ * Includes
+ * ******************************************************************/
#include "Menu.h"
#include "System.h"
-/* **************************************
- * Defines *
- * **************************************/
+/* *******************************************************************
+ * Defines
+ * ******************************************************************/
-/* **************************************
- * Global variables *
- * **************************************/
+/* *******************************************************************
+ * Types definition
+ * ******************************************************************/
-/* **************************************
- * Functions definition *
- * **************************************/
+/* *******************************************************************
+ * Global variables definition
+ * ******************************************************************/
+
+/* *******************************************************************
+ * Local variables definition
+ * ******************************************************************/
+
+/* *******************************************************************
+ * Local prototypes declaration
+ * ******************************************************************/
+
+/* *******************************************************************
+ * Functions definition
+ * ******************************************************************/
/*****************************************************************//**
*
- * \brief Initializes the device and game parameters.
+ * \brief Initializes the device and game parameters and
+ * executes the game.
*
- * \return Error code (always 0), but is never returned.
+ * \return Error code (always 0), but must never be returned.
*
*********************************************************************/
-int main()
+int main(void)
{
/* Initialize system and game parameters. */
SystemInit();