Guest User

Untitled

a guest
Sep 7th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.33 KB | None | 0 0
  1. // Changes to cheats.c
  2.  
  3. #include "ov.h"
  4. #define BLANK 255,255,255
  5. void hello_world() {
  6.     if(is_pressed(BUTTON_L)) {
  7.         char buffer[13] = "Hello World!";
  8.         OvDrawTranspartBlackRect(0, 0, 25, 84, 1);
  9.         OvDrawString(buffer, 0, 0, BLANK);
  10.     }
  11. }
  12.  
  13. // After this, I declared the function in cheats.h and created a menu entry for it.
Advertisement
Add Comment
Please, Sign In to add comment