Changeset 189 in Main for trunk/Server/main.c


Ignore:
Timestamp:
Sep 29, 2024, 9:37:00 AM (7 weeks ago)
Author:
Nishi
Message:

will try to fix ps2 later

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Server/main.c

    r187 r189  
    55#include "../config.h"
    66
     7#include <unistd.h>
    78#include <stdio.h>
    89#include <stdbool.h>
     
    4041#define printf(...) pspDebugScreenPrintf(__VA_ARGS__)
    4142#define STDERR_LOG(...) pspDebugScreenPrintf(__VA_ARGS__)
     43#elif defined(__ps2sdk__)
     44#include <debug.h>
     45#include <sifrpc.h>
     46
     47#define printf(...) scr_printf(__VA_ARGS__)
     48#define STDERR_LOG(...) scr_printf(__VA_ARGS__)
    4249#else
    4350#define STDERR_LOG(...) fprintf(stderr, __VA_ARGS__)
     
    244251        printf("PS3 Bootstrap, Tewi/%s\n", tw_get_version());
    245252        netInitialize();
     253#elif defined(__ps2sdk__)
     254        SifInitRpc(0);
     255        init_scr();
     256        scr_printf("PS2 Bootstrap, Tewi/%s\n", tw_get_version());
     257        while(1)
     258                ;
    246259#endif
    247260        int st = startup(argc, argv);
Note: See TracChangeset for help on using the changeset viewer.