Skip to content

Commit

Permalink
New startup look
Browse files Browse the repository at this point in the history
  • Loading branch information
krazynez committed Jul 19, 2023
1 parent 3bc8435 commit 49f6375
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion extras/menus/xMenu/main.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#include <pspkernel.h>
#include <sstream>
#include "debug.h"
#include "common.h"
#include "menu.h"
Expand All @@ -16,7 +17,23 @@ int main(int argc, char** argv){

common::loadData();

debugScreen("starting menu");
std::string startup_txt = "starting menu";
std::string startup_txt_upper = "STARTING MENU";

std::stringstream startup_holder;

int i;
for(i=0;i<startup_txt.length();i++) {
if((i%2)==0)
startup_holder << startup_txt_upper[i];
else
startup_holder << startup_txt[i];

debugScreen(startup_holder.str().c_str(), 180, 130);
sceKernelDelayThread(100000);
}


Menu* menu = new Menu();
menu->run();
delete menu;
Expand Down

0 comments on commit 49f6375

Please sign in to comment.