From 413394095b1ffb72bb2d086e95d48e88bfee3780 Mon Sep 17 00:00:00 2001 From: Crayon Date: Thu, 1 Mar 2018 19:57:34 -0500 Subject: [PATCH] Add syntax highlighting to readme file Add syntax highlighting to readme file --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6a55da3..14fca0d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ ## Usage Following steps are required for initialization: -``` +```C InitOSFunctionPointers(); // Load OS functions InitPadScoreFunctionPointers(); InitVPadFunctionPointers(); // Input functions for GUI control @@ -21,13 +21,13 @@ unmount_sd_fat("sd"); ``` Link the application with: -``` +```Makefile -lgui -lutils -ldynamiclibs -lfreetype -lgd -lpng -ljpeg -lz -lmad -lvorbisidec ``` You also need to add the include path to your Makefile. Example: -``` +```Makefile export INCLUDE := [...] -I$(PORTLIBS)/include/freetype2 \ -I$(PORTLIBS)/include/libgui \ -I$(PORTLIBS)/include @@ -56,4 +56,4 @@ This package includes: # Credits - Orignally based on https://github.com/dborth/libwiigui - Wii U port / modification / new functions / sound / much more by dimok. -- Minor changes by Maschell \ No newline at end of file +- Minor changes by Maschell