summaryrefslogtreecommitdiff
path: root/src/libultra_code_O2/osContSetCh.c
blob: 0e7502b0cf40b547325e705c7a4e01e5cd762566 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "ultra64.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;
}