Skip to content

Instantly share code, notes, and snippets.

@frangarcj
Created September 13, 2015 23:31
Show Gist options
  • Save frangarcj/f5bbabd3f25887ad2091 to your computer and use it in GitHub Desktop.
Save frangarcj/f5bbabd3f25887ad2091 to your computer and use it in GitHub Desktop.
VITA Globals error
/*
* Copyright (c) 2015 Sergi Granell (xerpi)
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <malloc.h>
#include <sys/time.h>
#include <psp2/ctrl.h>
#include <psp2/touch.h>
#include <psp2/display.h>
#include <psp2/gxm.h>
#include <psp2/types.h>
#include <psp2/moduleinfo.h>
#include <psp2/kernel/processmgr.h>
#include <string>
PSP2_MODULE_INFO(0, 0, "vitahelloworld");
std::string retro_base_name;
int main()
{
retro_base_name = "perrrrro";
while(1);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment