summaryrefslogtreecommitdiff
path: root/soh/src/libultra/io/contsetch.c
blob: fe9fe13d7cbe104366e3842d849bdc4de1ceeef4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <libultraship/libultra.h>
#include "global.h"

/*
 * s32 osContSetCh(u8 ch)
 * This function specifies the number of devices for the functions to access when those functions access to multiple
 * direct SI devices.
 */
s32 osContSetCh(u8 ch) {
    __osSiGetAccess();

    if (ch > MAXCONTROLLERS) {
        __osMaxControllers = MAXCONTROLLERS;
    } else {
        __osMaxControllers = ch;
    }

    __osContLastPoll = -2;
    __osSiRelAccess();
    return 0;
}